Posts: 255
Name: John Nerush
Location: Milton Keynes, UK
|
Using firebug it appears the proplem stems from the structure of the HTML,
The fix, in its simplest form, wrap a div around the whole site with a fixed width and margin:0 auto;
If you have the ability, go through each div block/structure area, i.e. topHeader etc and give them a fixed px width and apply margin:0 auto;
You may also need to put a width:100%; on the body in your css.
Howver, if you want the layout to be more fluid, with the content area streching but the header, nav and footer being centred then you will need to give the body a width of 100% and play with the header.
|