I have a video player on my site which will have a list of videos on the right hand side. This list will keep growing over time and thus comes the need to have overflow-y: scroll; added to my CSS.
But at the same time, I have a nifty little hover effect which adds an arrow while hovering and once you have clicked.
The problem is, when I add overflow-y: scroll; to the container, it removes my arrow effect, does anybody know how I can keep the scroll effect and the arrow at the same time?
Please see FIDDLE for an example.
You will notice I have added a comment where I think the overflow should be added, but I might be mistaken:
/*THIS IS WHERE I NEED TO ADD OVERFLOW-Y SCROLL*/
#My-Vids #videos .list ul {
background-color:#004461;
height:482px;
margin:20px
}
EDIT: to see what happens, just place overflow-y: scroll; into my code.