Edit template, customize footer
var chatbox = document.getElementById('Huypv-ChatBox');
if (chatbox) {
// clone me
var item = document.createElement(chatbox.tagName);
item.innerHTML = chatbox.innerHTML;
item.style.width = "100%";
var list = document.getElementById('content');
// list.appendChild(item);
list.insertBefore(item, list.firstChild);
// kill me
chatbox.parentNode.removeChild(chatbox);
}
Title:
Change chatbox position in vBulletin
Description:
Edit template, customize footer var chatbox = document.getElementById('Huypv-ChatBox'); if (chatbox) { // clone me var ...
...
Rating:
4