I have a problem with IE7, i just noticed couple days ago that my floated divs are overfloating all the way out of the box to the left

here is the problem: http://www.locksmith-service-rockville-md.com/door-knob-lever-set

i have been trying to figure it out for the past 3 days, so far with out any success,

Can anyone tell me what i am doing wrong here?

Thanks in advance

link|improve this question
1  
Do me a favour and stop changing the live site when I'm trying to debug it? – thirtydot Feb 24 '11 at 0:43
it's funny it works on 11/15 sites, which have the exact same css – motti Feb 24 '11 at 0:43
sounds good :) right now it's the way it was in the beginning, do you have any recommendations for good debugging tools for ie7? – motti Feb 24 '11 at 0:44
Good, I'll look again. I'm using IE's Developer Tools; you should be able to bring that up by pressing F12. – thirtydot Feb 24 '11 at 0:46
Thank you, i am going to try to look at it my self also, but it's not going so good for me so far – motti Feb 24 '11 at 1:03
feedback

3 Answers

up vote 0 down vote accepted

You kept changing the live site, so I'm slightly confused.

  • Make sure #left-side does not have overflow: auto.
  • On div .views-row-odd, div .views-row-even, remove clear: right.
    (this change doesn't seem to be required, but I also don't see the need for clear: right here)
  • From your HTML source code, remove <div class="space"></div>.
    That's not the way to get the space at the top; it's causing problems.

Do those changes to your live site, and let me know what you think.

If that's good so far in the different browsers you're testing in, we can see about adding back in that spacing, using a different method.

link|improve this answer
Thank you, removing the clear:right solved the issue! thanks – motti Feb 24 '11 at 3:16
feedback

Here's something to try:

div#left-side
{
  overflow: auto;
}

This fixes 90% of all floating issues.

link|improve this answer
overflow:auto even creates something more bizzar it just create a scroll box around the item, and it keeps on floating everything to the left and outside of the container – motti Feb 24 '11 at 0:27
Really? It looks the same to me (Google Chrome 10.0 Dev). Did you apply it to #left-side? I changed my answer a few times within the past minute... – Blender Feb 24 '11 at 0:28
In Chrome it seems to be alright, the overflow auto messes things up a little in the top box. i have tried to apply the overflow auto to the .view-content – motti Feb 24 '11 at 0:31
Overflow auto on the left-side div adds scrolls, but the images still going under – motti Feb 24 '11 at 0:32
feedback

When eliminated float: left on first div with class "views-row views-row-1 views-row-odd views-row-first", more specifically ".views-row-odd" seem fixed your problem.

link|improve this answer
didn't work for me, i was thinking to try to clear left on the odd boxes, but it didn't work either. just messed things up in other browsers – motti Feb 24 '11 at 0:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.