Any ideas why this isn't working in IE

Associate
Joined
2 Aug 2005
Posts
680
Always the way :rolleyes:
My CSS rollovers are working in Firefox but not IE. Also if anyone's using any other browsers I'd be interested to see if it's working in them too.

Edit: link removed, all sorted

Each button is supposed to display some text in one of the gray boxes touching it. The text doesn't seem to display at all in IE for some reason.

Any ideas?
Thanks
 
Last edited:
Cool, cheers guys that's handy to know! :)

So does anyone have any ideas why it's not working in IE6?

I think it might be to do with this bit:

Code:
#iButtons a span {
	display:none;
}
 
I just can't get my head around it. If you hover over the links you can see what looks like some of the text at the very top few pixels of the button.
 
Got it working. This did the trick:
Code:
#iButtons a:hover { display: inline-block;}

Not seen the inline-block before, almost contradicts itself surely lol
 
Back
Top Bottom