I'm banging my head on this one.

I have a disturbing horizontal scrollbar that appears only when browsing my site in IE7:
http://www.regia.it

I have tried and tried to stop this from happening by using overflow:hidden on my divs but for some reason I just can't seem to find what is causing the problem.

Any help is greatly appreciated.

link|improve this question

75% accept rate
Tested with IE8 in compatibility view, no scrollbar here. The only thing wrong I saw was the menu, that was vertical instead of horizontal. Can you post a screen shot? – Andre Sep 15 '11 at 18:04
Take a look at this SO Question: stackoverflow.com/questions/2941172/… – Todd Moses Sep 15 '11 at 18:05
Here's a screenshot in IE7:dl.dropbox.com/u/2899749/screen.png – Milksamsa Sep 15 '11 at 18:11
I have been trying the overflow-x: hidden property on the body tag with no success. – Milksamsa Sep 15 '11 at 18:17
feedback

1 Answer

up vote 2 down vote accepted

This does seem odd. I am assuming you don't mind if the page is not horizontally scrollable even on small screens, since you have tried to use:

body{overflow-x: hidden;}

In which case if you apply it to html rather than body it should do the trick:

html{overflow-x: hidden;}

I wouldn't really want to implement this long term, but if you are looking for a quick fix this should be ok as a temporary measure until you can work out what is going wrong. I would also put it in a conditional comment so as not to ruin the experience for the majority of people on modern browsers.

<!--[if IE 7]>
    Link to alternate style sheet
    OR
    <style> /*CSS in here*/ </style>
<![endif]-->

EDIT : I have found the cause of the issue, so there is no need to use the above workaround. As I had suspected the issue was related to absolute and relative positioning.

You just need to remove position:relative from .grid_2 and .grid_12 and the scrollbar will disappear.

link|improve this answer
Thanks. That's what I've precisely done just a couple mins before your answer and did fix the bug. As you said I would have hoped for a better solution, but this will do! Thank you. – Milksamsa Sep 15 '11 at 18:57
@milksamsa: Happy I could help and glad you didn't have to use the reduced usability workaround. – tw16 Sep 15 '11 at 21:31
feedback

Your Answer

 
or
required, but never shown

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