hanazair
hanazair

Reputation: 859

No horizontal scroll bar not showing

Just built this site: http://www.aspenwebsites.co/

I'm still testing it in different browsers and fixing up details.

The content of the site is set in % with max and min width values also set. However, when I reduce the browser's window down below the minimum width set in my CSS - I expect to see the horizontal scroll bar, but it is not showing even if I add "overflow-x:scroll" to the HTML or BODY.

Thanks in advance for taking time for my question. :)

Upvotes: 1

Views: 4364

Answers (3)

Sunitha G
Sunitha G

Reputation: 1

remove the style, overflow : hidden, it will work

Upvotes: 0

Ankit
Ankit

Reputation: 1510

This should work:

#contentWrap {
display: none;
margin-bottom: 20px;
}

Upvotes: 1

Slavenko Miljic
Slavenko Miljic

Reputation: 3856

#contentWrap on line 202 of style.css has overflow:hidden; property

Upvotes: 0

Related Questions