Why is there a one pixel shift in most browsers except for FF.
Many thanks,
Houston
Why is there a one pixel shift in most browsers except for FF.
Many thanks,
Houston
Each browser calculates measurements in its own way, so this kind of layout strategy is very hit and miss. You really should break your page up into 100% width div containers each with a separate background image, so that, for example, the nav outer div has the light blue background with the nav links inside it etc., so too with the content and header.
So ultimately, no CONTAINER div then right?
Correct. For a layout with bands across the screen like that, have separate divs of width 100% for header, nav, content etc. Inside each one, have a centered div of width 960px. It’s a little more labor, but certainly the best way to structure a design of this sort.
OK will do. Thank you.