Forum Moderators: not2easy
I have a linked image inside a div, the problem in ie 5.0 5.5 and 6.0 is that the whole footer div becomes the link, this obviously isn't the case in firefox and other decent browsers.
<div id="footer"><a href="/link" style="float: left"> <img src="img/blah.gif" width="106" height="40px" alt="" title="" /></a>
</div>
cheers guys
#footer {
padding: 0;
margin: 0;
height: 90px;
background: transparent url(img/foot3.gif) 0 0 no-repeat;
}
#footer img {
border-style: none;
margin: 5px 0 0 590px;
display: inline; /*stupid ie float bug see [positioniseverything.net...] for details*/
}
#footer a {
border-style: none;
display: block;
width: 127px;
}
any help would be ace
ta!