View Single Post
  #3 (permalink)  
Old 05-02-2008, 12:30 PM
chandrika's Avatar
chandrika chandrika is offline
WebProWorld Veteran
 
Join Date: Oct 2005
Location: Cambridge, UK
Posts: 376
chandrika RepRank 4chandrika RepRank 4chandrika RepRank 4chandrika RepRank 4
Default Re: Huge Problem with my Site www.DaveTheJerk.com Please help

I think that this is a css bug in IE. As you use the "float" property in the style sheet to position stuff alot and that is well documented problem in IE. There are a few workarounds here..
Internet Explorer Float/Margin Bugs

One possible solution might be to add
display: inline;

into the elements that use the float property,

eg
Code:
.right_side {
float : right;
width : 202px;
background : inherit;
overflow : hidden;
display: inline;
}
That might fix it. It might not, but thats just one idea you could try and read other possible workarounds for the float bug in that link I put.
__________________
2009 Hairstyles - Pictures of 2009 hairstyles and a virtual hairstyler demo.
Price Comparison Site - Compare prices of well known brands and products.
Reply With Quote