need help in mouse hover
Posted: Thu Jul 16, 2009 4:55 am
Hi,
On hover is not working in IE 6.
Am using the following css do display background color on hover. But its not working on IE6.
Help me.
CSS Code:
And Html Code
On hover is not working in IE 6.
Am using the following css do display background color on hover. But its not working on IE6.
Help me.
CSS Code:
Code: Select all
.lmenu5{
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:11px;
font-weight:bold;
color:#000000;
background-color:#FFFBFF;
height:23px;
}
.lmenu5 a{
font-size:11px;
text-decoration:none;
color:#000000;
}
.lmenu5 a:hover{
font-size:11px;
background-color:#DEEBFF;
}
.lmenu5:hover{
background-color:#DEEBFF;
border-right: #000000 2px solid;
}Code: Select all
<table>
<tr>
<td class="<?php echo $class; ?>"> <a href="index.php">Home</a></td>
</tr>
</table>