I have built a site in wordpress and the home page is really screwed up in IE, but works fine in FF, Chrome and Safari.
I have a conference call in 5 hours and I need it to be fixed and would be very grateful if someone could help.
The site is http://www.fullygreen.com and the core issues are:-
- red box around first menu item
- menu pushed to the right and items missing
- tabs in tab box all squashed up
- sidebar appears underneath tabs instead of to the side
All other pages appear fine in terms of the menu / header layout.
To fix the position of the navigation menu, add
clear:leftto#wrapper1Change the top value for all inner divs to 0
I just looked at your source, the DOCTYPE declaration must be the first thing in the HTML file. You have some javascript includes. Not having a DOCTYPE or having an invalid DOCTYPE throws IE into quirks mode and it goes crazy.
You also have a javascript error in function introshowtabs()
In the sidebar, your image is bursting out of the rounded corners because your image is 250px wide but your containing div (
#sidebarads) is only 240px wide. IE will expand a container to fit what it contains.None of your rounded corners are centered in the gray because IE6 is in quirks mode.
This is the problem for the red border around the first menu item (around line 546 in style.css):
Remove the
border: 3px red solid;