Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

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

#64240
vincent
Member

Wrap the text in a span, so:

HTML

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;}

I didn’t try it in IE. I will in like two hours if you haven’t found the solution yet.