View Single Post
  #3 (permalink)  
Old Feb 12th, 2008, 22:34
delusion delusion is offline
Reputable Member
Join Date: Jun 2007
Location: Bellevue, SK, Canada
Age: 29
Posts: 222
Thanks: 0
Thanked 0 Times in 0 Posts
Re: IE7 not displaying CSS columns properly

try to make your #content_container less wide..
If that helps, create a conditional in your index.html (in your <head> </head>) like this:

Code: Select all
<!--[if IE]>
<style type="text/css"> 
#content_container {
width:770px;
}
</style>
<![endif]-->
Reply With Quote