|
Post by Thê®ømMãstê® on Oct 3, 2004 17:52:15 GMT -5
Please gimme me
|
|
|
Post by Tommy Huynh on Oct 3, 2004 22:55:33 GMT -5
Please gimme me Footers You should change the HEX COLOR to whatever color you want on the line that looks like this: var mouseOverColor = '000000'; In IE, when hovering over a board, the status bar now shows the name of the board. (See main page here for an example) Alright, here is the code:
<SCRIPT LANGUAGE="JavaScript"> <!-- /* Cell Highlight & Link Copyright © 2003 Craig Suffolk, ProBoards.com All Rights Reserved */
var mouseOverColor = 'HEX COLOR'; var statusMessage = 'TEXT'; window.status = statusMessage;
cellHigh = document.getElementsByTagName('TD'); for(ch=0;ch<cellHigh.length;ch++) { if((cellHigh[ch].className=="windowbg2" && cellHigh[ch].width=="66%") || (cellHigh[ch].className=="windowbg" && cellHigh[ch].width=="48%")) { if (cellHigh[ch].width=="48%") {var num=0;} else {var num=1;} cellHigh[ch].onmouseover = function(){this.style.cursor='pointer';this.style.backgroundColor=mouseOverColor; window.status=this.getElementsByTagName('b')[0].innerHTML;}; cellHigh[ch].onmouseout = function(){this.style.backgroundColor=this.bgColor;window.status=statusMessage;}; cellHigh[ch].onclick = function(){location = this.getElementsByTagName('a')[num].href;}; }} // --> </script>
|
|