Reputation: 859
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
Reputation: 1510
This should work:
#contentWrap {
display: none;
margin-bottom: 20px;
}
Upvotes: 1
Reputation: 3856
#contentWrap
on line 202 of style.css has overflow:hidden; property
Upvotes: 0