View Single Post
  #3 (permalink)  
Old 05-02-2008, 11:30 AM
chandrika's Avatar
chandrika chandrika is offline
WebProWorld Veteran
 

Join Date: Oct 2005
Location: Cambridge, UK
Posts: 374
chandrika RepRank 1
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.
__________________
Hairstyles - Pictures of 2008 hairstyles and a virtual hairstyler demo.
Price Comparison Site - Compare prices of well known brands and products.
Reply With Quote