Forum Moderators: open
I just been trawling the web and I can across the Real Media [entertainment.real.com] website. As you can see the left hand nav has the cell background colour change when you hover. This does not seem to be the normal way you do it with css and hovering a table cell. It is not an images and I their stylesheet doesn't seem to reveal any clues. Can anyone explain how this is done.
Chris.
Chris
.clickcell a, .clickcell a:link, .clickcell a:visited {
display: block;
width: 100%;
}
also see: [webmasterworld.com...] for the javascript version.
<td class="navigation">Entertainment</td>
And the css would look like
.navigation a:link, .navigation a:visited, .navigation a:active {
display: block;
width: 100%;
background-color: #ffffff;
}.navigation a:hover{
display: block;
width: 100%;
background-color: #ffdddd;
}
Chris