I found a way to link my logo to my homepage when using css, but the finger cursor doesn't appear when hovering the link. Is there a better way to do this? I didn't make site or the css myself, and I don't want to restructure the whole thing if I can help it.
in my top frame:
in my css:
in my top frame:
Code:
<a href="index.html" target="_top">
<div id=top>
</div>
</a>
in my css:
Code:
#top {
position:absolute;
top:0px;
left:0px;
width:290px;
height:100px;
background:url(images/logo.gif) left no-repeat;
z-index:10;
}