MyBB Community Forums

Full Version: Light up logo on hover
You're currently viewing a stripped down version of our content. View the full version with proper formatting.

MikeInToshx

Hai,

How to light up your logo when you hover over it? Can't seem to find the code when inspecting..

For example on this site I recently came across in the new posts section:

http://www.phoenixrp.net/
Well, just change the opacity.

.something {
   opacity: 0.6;
   filter:alpha(opacity=60);
}

.something:hover {
   opacity: 1;
   filter:alpha(opacity=100);
}

MikeInToshx

Hey,

Sorry for the late response, was changing webhost and had some issues.

I'm not sure with what to replace ".something" with? .logo?
(2014-03-10, 08:01 PM)MikeInToshx Wrote: [ -> ]Hey,

Sorry for the late response, was changing webhost and had some issues.

I'm not sure with what to replace ".something" with? .logo?

.something is the class name.

So if you'd like, you can name it .logo but it should not exist before. So if you already have the class "logo", you'll need to make this class "logo1" or something unique.

MikeInToshx

I got it working, thanks though Wink