Now the problem is right now is that I want to get rid of the text of my site name which is the header h1 tag. Without having to loss the image from disappearing. When i do this: (in the css file) text-decent: -9999px it just goes off the page along with the header h1 image because it's inside that tag. I want to get rid of that space that shows the h1 in the dark blue color and have the logo go in there nicely without losing the linkage to the site on the image. So it will be clickable in the same spot as it displays in IE7 and IE 8.
Here is my site:
http://nickhiebert.com/test_site
Here is my html code:
Code:
<h1><a href="http://nickhiebert.com/test_site/index.html"><img src="images/logo.png" alt="header h1"/>Nick Hiebert</a></h1>
Here is my CSS Code in IE6:
Code:
#header h1 {
height: 30px;
line-height: 30px;
vertical-align:text-top;
text-indent: 0;
}
Help would be greatly appreciated.
Nick