jeffrey morin wrote:
> sorry to keep at this but does anyone know why the absolute positioning
> looks fine on ff on my mac but gets shifed about 75px on a pc?
> 
> www.goutcleanse.com

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
______________________________________________________________________
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