Hi all
Hope you can help, driving me nuts.
![[morning] [morning] [morning]](/data/assets/smilies/morning.gif)
Got probably a basic question.
If you copy the following into your editor you'll see what I mean.
I have two examples of mouse effects with href in table cells.
The first row works in both netscape and IE.
The second only in IE.
The second is the effect I want as it fills the whole table height whilst the first does not.
How can I get the second row to work for Netscape, IE and other popular browsers?
Many Thanks In Advance.!!!
ITflash
<style type="text/css">
<!--
.myClass
{font-family: Verdana; font-size: 8pt; color:#FFFFFF}
.myClass
a{
color:white;
text-decoration:none;
position:relative;
display:block;
}
.myClass a:hover{
color:white;
background-color:#008080;
}
-->
</style>
<table border="1" bgcolor="#993300" cellpadding="0" cellspacing="0" style="border-collapse: collapse" width="100%" height="35" bordercolor="#FFFFFF">
<tr>
<td height="30" align="center" class="myClass">
<a href="#" onclick="location.href='services.htm';return false">The Company</a></td>
</tr>
<TR>
<a href="#" onclick="location.href='services.htm';return false">
<TD height="30" width="10%" STYLE="border-left:1px solid #FFFFFF; border-top:1px solid #FFFFFF; border-bottom:1px solid #FFFFFF; cursor: hand; border-right-color:#FFFFFF" onmouseover="style.backgroundColor='#008080'" onmouseout="style.backgroundColor='#993300'" align="center" height="2">
The Company
</TD>
</a>
</TR>
</table>