Hi all,
I'm having a problems with a web page I'm making. I have a container div which has a child div inside it. I want a scroll bar in the child div, to keep consistency throughout other pages.
#videoclips-main
{
position:absolute;
overflow: auto;
top:0%;
left:0%;
width:100%;
height:80%;
z-index:1;
}
As you can see from my CSS, I have overflow:hidden to create the scrollbar if it is needed. In both Safari and Firefox, I can see the scrollbar but I can't scroll down even through there is more content.
Any ideas what's wrong?
Cheers,