Forum Moderators: not2easy
I'm putting together a blog, Ive finally got the appearance fine across the browsers Im testing on (firefoe, IE6 and IE7).
However I have a tabbed navigation along the top which does not become selectable when rolled over in IE6, also any links in the content section aren't selectable either.
<snip>
Any help would be much appriciated this is my first real attempt at CSS and it has been a struggle getting this far, I only need to get past this problem and I should hopefully finally be finish.
Thanks alot
[edited by: Robin_reala at 6:28 pm (utc) on April 26, 2007]
[edit reason] Removing URL as per TOS #13 [webmasterworld.com] [/edit]
<a href='page.html'><img src='mying.png'></a>
Well, if the A has no position set, then the img won't work, actually it's displayed on top of the link, so the link is effectively hidden.
To fix it, use A { position: relative; } in your CSS and make sure that IMG has no position set.