he y frnds plz chk out the following code:
[HTML]<td align="center" class="rollover "><a href="#">home</a></td>[/HTML]
css code:
i want tht the code written above should work but there is no need for writing home in above html code but it works only if i add home in html code. but there is an image for home which will b replaced for another home image on its rollover.the background for td wud not change only the image for home will b replaced.Please suggest.
[HTML]<td align="center" class="rollover "><a href="#">home</a></td>[/HTML]
css code:
Code:
.rollover A { background:url(../images/home.gif); } .rollover A:hover { background:url(../images/home_h.gif); }
Comment