We are transferring a site from version 7 to 9, attempting to keep the look as much the same as possible.
The site can be viewed at: http://trials.actinic.com/trials/trial60210/
Homepage and other non-product pages use a layout with a left hand menu area, a middle area for content, and a right hand menu area. Product pages use another layout with just the left hand menu and a larger content area with no right hand column....
In Firefox (my preferred browser) homepage looks just fine, however linking to any of the product/sections from the left hand menu you can see the main content slips behind the menu area - something to do with widths maybe?
In Internet Explorer (no comment) homepage/non product pages are a different story. Left hand menu sits on the left - great. Centre and right hand content sit BENEATH the left hand menu, left justified.
Also, the entire site should be centred on the screen, regardless of resolution - in Firefox its fine, in IE everything is left justified. The #wrapper DIV has a width of 980px and a margin-left/margin-right of 'auto'.
Anyone got any ideas?
The CSS for the homepage and non-product page layouts is:
The CSS for the product page layouts is:
All help gratefully received... customer is expecting a finished website last Friday (!!)
The site can be viewed at: http://trials.actinic.com/trials/trial60210/
Homepage and other non-product pages use a layout with a left hand menu area, a middle area for content, and a right hand menu area. Product pages use another layout with just the left hand menu and a larger content area with no right hand column....
In Firefox (my preferred browser) homepage looks just fine, however linking to any of the product/sections from the left hand menu you can see the main content slips behind the menu area - something to do with widths maybe?
In Internet Explorer (no comment) homepage/non product pages are a different story. Left hand menu sits on the left - great. Centre and right hand content sit BENEATH the left hand menu, left justified.
Also, the entire site should be centred on the screen, regardless of resolution - in Firefox its fine, in IE everything is left justified. The #wrapper DIV has a width of 980px and a margin-left/margin-right of 'auto'.
Anyone got any ideas?
The CSS for the homepage and non-product page layouts is:
Code:
#wrapper { width: 980px; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; background-color: #FFFFFF; padding: 0px; text-align: left; } #content { width: 100%; padding-left: 2px; padding-right: 2px; margin-top: 10px; } #content div { padding:0px; float:left; } #content1 { width: 160px; } #content2 { width: 600px; margin-left: 10px; float: left; } #content3 { width: 160px; margin-left: 10px; float: left; }
Code:
#wrapper { width: 980px; margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; background-color: #FFFFFF; padding: 0px; text-align: left; } #content { width: 100%; padding-left: 2px; padding-right: 2px; margin-top: 10px; } #content div { padding:0px; float:left; } #content1 { width: 160px; } #content-main { width: 800px; padding-left: 10px; float: left; }
Comment