> I am building a website for a school, but running into a display problem
> between IE and CSS. (The site is http://stmary-stthomas.org/ )
>
> The main horizontal menu bar looks just fine on Mac and PC with most
> browsers.
...
> #navcontainer {
> position:absolute;
> top:115px; /* This works on most browsers,
> but would have to be 135 for IE7 */
> Help! Does anyone have any idea of what's wrong, *OR* how I can tweak
> this to make the "top" of the menu position come out correctly on IE7?
Put this under any stylesheet links that you have in the head
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" href="ie7.css">
<![endif]-->
Moreover, make sure you have no inline styles pertaining to this issue
in the body.
And now, make a new text file and call it ie7.css and type in this file:
#navcontainer {
position:absolute;
top:115px; 135px in it.
(I noticed, for the first time ever, that a notice popped up on my
screen saying you have requested I send you an email if I reply. Sorry
Kevin, but I don't talk to strange men so intimately.)

Signature
dorayme