It's a problem with IE and Firefox not using the same size for some tags. Are you using H1, H2, etc., header tags? There's are CSS "hack" you can try to make IE play by the rules Firefox and Opera do.
One thing you might want to try is this bit of css:
h1, h2, h3, h4, h5, h6 {
margin:0px;
}
It will make H-tags in IE appear in the same position as they do in Firefox. There may still be a slight difference in size. You can specify the size too. It's something I don't do myself because that used to be an old trick SE spammers used and the SE's may ding you for it.
If you're using the <font> tag I'd recommend using div instead and in its style attribute use font-size:[size]px, where [size] is the disired size in pixels ie. font-size:18px.
|