Home › Forums › CSS › [Solved] Hiding h1 in IE Using display:none or text-indent › Re: [Solved] Hiding h1 in IE Using display:none or text-indent
September 16, 2009 at 8:32 pm
#64240
Member
Wrap the text in a span, so:
HTML
Code:
CSS
Code:
#logo a {display:block;height:xxxpx;width:xxxpx;} Width and height of the image you are using as the link.
#logo a span {visibility:hidden;}
#logo a span {visibility:hidden;}
I didn’t try it in IE. I will in like two hours if you haven’t found the solution yet.