View Single Post
  #6 (permalink)  
Old 05-02-2008, 04:28 PM
DavetheJerk DavetheJerk is offline
WebProWorld New Member
 

Join Date: Apr 2008
Posts: 6
DavetheJerk RepRank 0
Default Re: Huge Problem with my Site www.DaveTheJerk.com Please help

Quote:
Originally Posted by chandrika View Post
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.

omg thank you so much it worked you my friend RULE, F*CK YES
Reply With Quote