irishcavan Posted October 18, 2005 Share Posted October 18, 2005 When I change the color of the box headers, Title header and the Footer header, the font color goes from white to black - even though the code still says white "FFFFFF". http://www.anirishtouch.com/irishimports/nfoscomm/catalog/ Anyone have any ideas? I am at a loss. Thanks, Irish Link to comment Share on other sites More sharing options...
Wendy James Posted October 18, 2005 Share Posted October 18, 2005 I looked at your stylesheet and your codes are wrong. // will not work to hide things One example TD.infoBoxHeading { //info Box Bars font-family: AvantGarde Bk Bt; font-size: 10px; font-weight: bold; background: #009900; //bbc3d3 color: #CCFFCC; //FFFFFF } Needs to be TD.infoBoxHeading { /*info Box Bars*/ font-family: AvantGarde Bk Bt; font-size: 10px; font-weight: bold; background: #bbc3d3; color: #FFFFFF; } assuming that is the background color you wanted The extra stuff is breaking the style sheet codes on the particular lines where you have // You can leave yourself notes inbetween /* and */ Wendy James Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep. Link to comment Share on other sites More sharing options...
irishcavan Posted October 18, 2005 Author Share Posted October 18, 2005 Thank you Wendy, I must be thinking of anoter programming code. Irish Link to comment Share on other sites More sharing options...
Wendy James Posted October 18, 2005 Share Posted October 18, 2005 // works for hiding things in PHP code /* and */ for css and <!-- your comment --> for html :) Easy to get em all confused Wendy James Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.