Hi guys, I recently had a design coded but something seems to be wrong. I've worked on this for hours but haven't found the problem. I have also had some other designers take a look but they don't know. If you go to *url removed* with firefox, it loads properly. All the boxes and content areas are in the correct place. If you visit that link in IE, the right navigational boxes appear under the main content area. They should obviously be to the right of the content area. Can someone please help me figure out how to fix this?
Open style.css: Find #wrapper, make the following change: #wrapper { margin: 0 auto; [B]width: 1016px;[/B] text-align: left; } Code (markup): The extra 6 pixels are likely being generated somewhere in the wrapper area, and in IE they tend to added up, which means the 1010px you had before did not leave enough room for the rightcontent div to squeeze into the right area. All we do is make that area larger and voila, problem solved.