views:

32

answers:

1

Hi all,

I have the following website (and please excuse the language of the site, it's in Hebrew), and I apologize for posting a link here. I promise to replace the link with something generic as soon as the problem is fixed:

EDIT: original site replaced with this: http://mysite.com

For some reason, there's an extra scroll to the left with IE7.

Is there a way to fix this?

Thanks, Amit

A: 

You should be able to do:

html {
   overflow: auto;
}

I also noticed your horizontal scrool bar in IE is related to:

<ul id="nav1"></ul>

It has position:absolute; that is causing the additional horizontal scrool.

rickp
Yeah you're right, I noticed that as well. I'll try the overflow:auto method
Amit
I made a variation of your answer. Instead I did html { overflow-x: hidden; }...That solved it...
Amit