Post by Trublu on Jan 3, 2011 19:10:39 GMT -8
The Crossfury code will not work unless you choose one of the following two options.
Delete the Proboards Blog:
Move the Proboards Blog
In addition, you must also use this code:
Codes courtesy of Eton, Craig, and Eton, respectively.
Delete the Proboards Blog:
<script>
(function(){
/* Patch - Remove ProBoards Blog from Admin Panel */
/* Top of Main Footer [9/1/2010]*/
var pau = document.getElementById('pb_admin_updates');
if(pau){
pau=pau.offsetParent.parentNode;
pau.cells[0].width = "33%";
pau.cells[1].width = "34%";
pau.cells[2].width = "33%";
pau.deleteCell(3);
}})()
</script>
Move the Proboards Blog
<script>
if (location.href.match(/ion=(admin|headersfooters3)/i) && (pbBlog=document.getElementById('pb_admin_updates'))){
pbCell = pbBlog.parentNode;
pbCell.parentNode.cells[0].width="33%";
pbCell.parentNode.cells[1].width="34%";
pbCell.parentNode.cells[2].width="33%";
pbRow = pbCell.parentNode.parentNode.insertRow(-1);
pbRow.appendChild(pbCell);
pbCell.colSpan=3;
pbCell.appendChild(document.createElement('span'));
pbCell.lastChild.innerHTML += '<marquee id="pbaablog" behavior="alternate" width="99%" class="windowbg2" style="padding: 5px;background-color: transparent;" onMouseOver = "this.stop()" onmouseout="this.start()"></marquee>';
for(y=0;y<pbBlog.childNodes.length;y++){
if(!/(#text|BR)/i.test(pbBlog.childNodes[y].nodeName)){
pbCell.lastChild.lastChild.appendChild(document.createTextNode('['));
pbCell.lastChild.lastChild.appendChild(pbBlog.childNodes[y]);
pbCell.lastChild.lastChild.appendChild(document.createTextNode(']'));
pbCell.lastChild.lastChild.appendChild(document.createTextNode('\xa0'));
}
}
pbBlog.style.display="none";
if((x=pbCell.getElementsByTagName('center')) && x[0]){
for(y=0;y<x.length;y++){
for(z=x[y].childNodes.length-1;z>-1;z--){
if(x[y].childNodes[z].nodeName!="BR")
x[y].parentNode.insertBefore(x[y].childNodes[z],x[y]);
}
x[y].style.display="none";
}
}
}
</script>
In addition, you must also use this code:
<script type="text/javascript" >
/* Patch - Fix CrossFury Options when clicked in admin panel - Eton */
/* Main Footer */
if(location.href.match(/headersfooters2&project=/)){
r=document.getElementsByName('rand');
if(r.length)r[0].parentNode.appendChild(r[0])
}
</script>
Codes courtesy of Eton, Craig, and Eton, respectively.