MyBB Community Forums

Full Version: How To Change Hover Box Color? MyBB Darkness Theme From Whiteneo
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am using MyBB Darkness Theme from @Whiteneo

I have made many color changes for this theme to match the color motif for my website. (see screenshot)

How do I change the hover box color as shown in the screenshot?

I can't find the correct code.

I am NOT a coder, so please be specific with your instructions.

[Image: fd6c9b75a7e639a9e86ec1c1c3ee999e.png]
Themes > Your theme > Global.css
.menu li > a:hover,.menu ul li:hover > a{
	background:#0b7a5f;
	color:#fff;
	text-decoration:none;
}
(2018-12-20, 03:56 PM)iAndrew Wrote: [ -> ]Themes > Your theme > Global.css
.menu li > a:hover,.menu ul li:hover > a{
	background:#0b7a5f;
	color:#fff;
	text-decoration:none;
}

Thanks @iAndrew! That did the trick!