Other Glowing graphic on mouse hover

This should work, but you will have to customise it to your liking.

Add this to EXTRA.css:

Code:
.bbCodeImage 
{
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
}
 
 
.bbCodeImage:hover {  
opacity: 1;
-webkit-box-shadow: 0px 0px 20px rgba(255,0,0,0.8);
-moz-box-shadow: 0px 0px 20px rgba(255,0,0,0.8);
box-shadow: 0px 0px 20px rgba(255,0,0,0.8);
}

This adds a red glow on mouseover:

glow-mouseover.webp
 
Top Bottom