MyBB Community Forums

Full Version: Toplinks mouseover effect
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

i would like to change the mouse over effect of the toplinks. Currently, if i move on it, it gives the black color and grey is the mouse out standard color but i want to change it to red. (The mouseover color, not mouseout color.)

How do i do that?

Thanks, k1R@
Hi k1R@,

All this requires is a simple CSS edit. First go to your ACP > Templates & Style > Themes > Your Theme > global.css

Then in the dropdown list select:

.menu ul a:hover, .menu ul a:active

and change the Color field to #FF0011. Click Save. Obviously you can change the color filed to whatever shade of red you want.
Edit: delayed response

find code like below in the global.css (advanced edit mode)
.menu ul a:hover, .menu ul a:active {
	color: #000000;
	text-decoration: none;
}

you can change color: #000000; to color: #ff0000; , save the theme and hard refresh your browser
Thank you both.