inherit
Beware the ever changing head
33588
0
Nov 18, 2023 0:32:44 GMT -8
Ross
19,039
November 2004
elindir
|
Post by Ross on Jul 5, 2005 9:04:12 GMT -8
This will let you use a different Gradient for the info center bar. That is, the one which says "Info Center".
Main Footer
<script type="text/javascript"> <!-- /* info center grad */ var info=document.getElementsByTagName("td"); for(e=0;e<info.length;e++) if(info[e].className=="titlebg" && info[e].innerHTML.match(/Info Center/)){ info[e].className="infotitle";} //--> </script>
This part gives the info center title the class of "infotitle". If you really want, you can change the blue to name it something different.
You can now use "infotitle" to apply CSS to the Info center bar. For example, a gradient:
<style type="text/css"> <!-- .infotitle{background-image: url(URL to Image);} //--> </style>
This will go in the Main Header
|
|