MyBB Community Forums

Full Version: Removing a logo mouse over effect! I need help!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
On my website there is a logo effect for when you mouse over the logo.. how do I remove this?
mahoganyfolk.com
bump for still needing help..
You need to change this CSS in your global.css

.logol {
opacity: 0.6;
	-webkit-transition: all 250ms ease;
	-moz-transition: all 250ms ease;
	-o-transition: all 250ms ease;
	transition: all 250ms ease;
        float:left;
}

.logol:hover {
opacity:1;
}

either delete the hover property or the opacity property
THANK YOU.