Why isn't a scrollbar appearing on my page? I've got an image at the bottom of the page that only the top half is showing, there is no scroll bar to scroll down.
here's the css:
Code:
.scrollenabled
{
overflow:scroll;
}
and then in the html:
Code:
<body class = "scrollenabled">
blahblahblah
</body>
All my elements on my page are positioned fixed... would that affect the scroll bar not working?