In my site below: http://optionsimplified.com/prakash/beta/ there comes a horizontal scrollbar in 1024x767 resolution without any reason, as the complete theme is not exceeding 1000px.

After googling some suggested to set overflow-x:hidden in the body inline css. But i dont feel its right block the HScrollbar completely. Besides IE will not take it.

Please help.

Thanks,

Comments

danpros’s picture

Category: bug » support
Priority: Critical » Normal

Hi,

Make sure you are modify the theme properly, the maximum size is 950px.

Dan

joshiparthin’s picture

I cross checked in my local machine. Even after changing all the width to 950, its not working....

joshiparthin’s picture

Waiting for your reply. Please help us. Client is not with the view. We are also willing to pay you for the support.

Thanks,

danpros’s picture

Status: Active » Fixed

Hi,

After look more deep to your CSS, I think the problems is coming from the bottom menu

#superfish-2 {
    display: inline-block;
    margin: 0 auto 0 160px;
    width: 100%;
}

Do not set the width to 100% if you set the margin-left to 160px since the result it will calculate 950px+160px=1110px for the menu width (the 950px value is from its container the #footer-wrapper and #footer).

So just set the width to auto or fixed size less than 950px-160px=790px etc.

#superfish-2 {
    display: inline-block;
    margin: 0 auto 0 160px;
    width: auto;
}

Dan

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.