Forum Moderators: not2easy
Here is the CSS for the background images:
.button-furnace {
height:150px; width:150px;
background: url(images/button-furnace.gif) no-repeat; }
Here is the CSS to format the link colors for the buttons (different from the default colors which are blue)
.button150 a:link, a:visited { color: #000000; }
.button150 a:hover, a:active { color: #666666; }
The varied black and blue colors show up on all browsers so I don't think it's a browser problem..
I'm concerned about the above CSS shorthand being the problem.
Here is a portion of the HTML:
</td><td class="button150" align="center">
<div class="button-ac">
<a href="air_conditioners.htm" style="position:relative;top:127px;"> Air Conditioners</a>
</div>
</td></tr><tr><td class="button150" align="center">
....etc.
The CSS and HTML validate.
Can anyone see the problem?
Should be this:
.button150 a:link, .button150 a:visited { color: #000000; }
.button150 a:hover, .button150 a:active { color: #666666; }