I'm currently working on a pet profile with various hovers. Everything works fine until I get to the div's to cover the scrollbars. For some reason they hover off and on when the Pet Description does as well. The weird thing is, one of the scrobars does NOT have this problem, but the other scrollbar and the image overlay i'm using, do have the problem.
Maybe you should include the pet you're having this problem with. ^_^ Figuring out what the issue is cna be quite difficult when you can't see it.
first, full opacity should be 1, not 2. That might be what's causing the weird flickering I'm seeing here.
the problem code is this:
:hover {opacity: 2;}
HTML:
CSS:
{opacity:.5;}
:hover{opacity:1}
edit: you also need to close your
<style>
needs to be
<style> ....
otherwise the scrollbar covers will act as if they are inside each other, which is not what you want.
