0

The page I am working on can be found here.

In IE7, everything in the main content area is being pushed to the left...

Can someone check it out and let me know what's up?

Here is a screenshot:

enter image description here

Cyril Gandon
  • 16,830
  • 14
  • 78
  • 122
Eric
  • 429
  • 2
  • 6
  • 15

2 Answers2

1

I don't have IE7 on this computer, but it looks like you have float:left applied to your main div

#body_container {
 float: left; // try removing this
}

EDIT

Had another look at the source and the page appears to be rendering in quirks mode in IE7.

Here are few ways to fix that:

  1. make sure all your code is valid
  2. make sure you are using the right doctype

Details here: Forcing IE7 into standards rendering mode (not quirks)

Community
  • 1
  • 1
Jason Gennaro
  • 34,535
  • 8
  • 65
  • 86
0

If this is a problem only in IE7, you might wanna try IE7 compatibility mode

Illuminati
  • 4,539
  • 2
  • 35
  • 55