|
Post by wooper on Aug 28, 2005 10:33:31 GMT -5
<script> //Set Board cell height on main page //wooper
var height = "150"; //set the desired height here
var cell = document.getElementsByTagName("TD"); for(j=0;j<cell.length;j++) { if (cell[j+1].width=="1%" && cell[j+2].width=="1%" && cell[j].className == "windowbg2") { cell[j].height=height; cell[j].vAlign="middle"; cell[j].align="center"; cell[j+3].vAlign="middle"; }} </script>
Main Footer You can change the height of the cells with this code.
|
|