I have a very basic css-question here. I'm working on some themes and won't be able to get them finished. The main problem is that FF and IE are doing not the same (as everybody knows). Heres an example of my prob:
As you can see the IE puts 2px in height and width between the header and the content. It looks very ugly with this! Heres the online version:
In fact, if you use padding or margin, remember that IE will *subtract* that from the width of the box. FF and other browsers will, in accordance with the CSS spec, *add* the margin and padding to the box width.
If that's the problem, you need to manually add the padding and margin to the box's width... for IE only. You can use one of the hacks for that. (Just Google up "IE CSS hacks" to see what I'm talking about. I like !important, myself.)