My menu features CSS3 effects on hover and active states, giving it a unique appearance.
Below is the CSS3 styling I have implemented:
#Menu a:active,
#Menu a.active:before,#Menu a:hover:before
{
Content: ' ';
position:absolute;
z-index:51;
width:0px;
height:0px;
left:50%;
top:50%;
box-shadow:0 0 35px 30px #ADD7E7;
-moz-box-shadow:0 0 35px 30px #ADD7E7;
-webkit-box-shadow:0 0 35px 30px #ADD7E7;
border-radius:50%;
}
While this styling works perfectly in Firefox and Chrome, I am facing compatibility issues with Opera. Any assistance in resolving this matter would be greatly appreciated. Thank you.