Putting food on my family
Posts: 3,429
Name: Daniel
Location: A sleepy town in Mid Wales
|
OK in your code on line 45, you have this:
html {
height: 500;
overflow: hidden;
}
Remove the "overflow:hidden;" bit and it should work fine. I'm not sure why it was there anyway.
Basically, take that out so it looks like this:
It should work now. "overflow: hidden", does as it says - hiding any of the overflowing content from displaying in the browser, so while the content is still there, most people won't be able to view it because the scroll bar has disappeared.
Dan
Last edited by whym : 04-03-2008 at 08:12 PM.
|