SO , I have some submit buttons on a page, that use CSS to style them up. On hover, the color should change, and this DOES work in FF, but not in IE. When hovered, the color does not change.
Here is the html:
...and here is the css that is involved in this:
So, it works fine in FF, but not in IE. the css styles the regular display properly in both browsers, it is just the HOVER part that does not work.
Any help would be greatly appreciated.
...and for any of you in Canada...happy Canada Day.
Here is the html:
Code:
a class="submithover">
<input type="button" value="[pause]" name="playOrPause" onclick="handlePlayOrPauseClick()" class="submithover1" />
</a>
<a class="submithover">
<input type="button" value="[show controls]" name="controls" onclick="handleControlsOnOffClick()" class="submithover" />
</a>
...and here is the css that is involved in this:
Code:
a.submithover {text-decoration: none;}
a.submithover input {border-style: solid; border-width: 0px; color: #ffff99; font-size: 16px; font-family: Verdana; font-weight: bold; background-color: #282484; }
a.submithover:hover input {border-style: solid; border-width: 0px; color: #cb7901; font-size: 16px; font-family: Verdana; font-weight: bold; background-color: #282484; }
So, it works fine in FF, but not in IE. the css styles the regular display properly in both browsers, it is just the HOVER part that does not work.
Any help would be greatly appreciated.
...and for any of you in Canada...happy Canada Day.