It's because you're positioning "in thin air". That #mainNav isn't

> positioned relative to any element in the page, so browsers either
> position it relative to body - which vary with browser-window, or drop
> it where it suits them.
>
> 1: add...
> #wrapper {
> position: relative;
> }
> ...to create a relation.
>
> 2: correct to...
> #mainNav {
> top: 147px;
> right: 0;
> }
> ...to position it correctly in relation to #wrapper.
>
> Result: no more guesswork for those poor browsers, so they'll all get it
> right :-)
>
> regards
>         Georg
> --
> http://www.gunlaug.no
>


i always have had trouble with absolute positioning. that worked perfectly!
thanks a lot.
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to