Please login or register. Welcome to the Studio, guest!


Quick Links:


newBookmarkLockedFalling

Chris

Chris Avatar

******
Head Coder

19,519


June 2005
<script type="text/Javascript">
// Color Board Names by Chris
// Do not redistribute without permission of the creator

// Scroll down to the "Edit Here" portion
var aAH = document.links;
function colorBoard(bid, col){
if(location.href.match(/action=(view_board|home)/i) || !location.href.match(/action=/i)){
for(a=0;a<aAH.length;a++){
if(aAH[a].href.match("board_id="+bid) && aAH[a].parentNode.nodeName == "B"){
aAH[a].style.color = "#"+col;
break;
}
}
}
}



// Edit here. Repeat the following line as necessary
// SYNTAX: colorBoard(BOARDID, "HEXCOLOR");

colorBoard(4, "000000");
colorBoard(3, "FFFFFF");
</script>


To find a board ID, view the board, and in the URL you'll see something like "board_id=##" The number (##) is the board ID. For colors, you must use a Hexidecimal color, not a name of a color such as "red" To find a list of hexidecimal colors, search Google.

This hack should go in your global footers.

newBookmarkLockedFalling