I have a strange thing with some <a name> tags when the page is accessed by IE. The tag is just before a <h2> and works in Firefox. In IE (6 and 7) the page scrolls just a bit to high, meaning, the <h2> is just out of the window.
In Firefox you can see the text "Overhere", in IE you can only see the bottom half of this text, and the first line you can actually read is "something..."
Below the css for the h2 and the way it's put in the html page:
h2
{font-weight:normal;
font-size:1.7em;
height:40px;
margin-left:-19px;
padding-left:10px;
padding-top:32px;
display:block;
background:url(/images/boxh.gif) no-repeat;
color:#800080;}
<a name="overhere"></a>
<h2>Overhere</h2>
<p>something about overhere...</p>
Anybody know how to keep the h2 inside the window in IE?