MyBB Community Forums

Full Version: Changing Link Colors
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What do I need to change to add hover effect to the View New Posts | View Today's Posts | Private Messages links and also, where to change the color of the bread crumb active links?

Thank you in advance! Wink
From Administration Panel
Open Menu Home - Themes - Choose Your Active Theme
and then click global.css, go to Advance Mode (tab)

find this and edit the color
example:

a:link {
	color: green;
	text-decoration: none;
}

a:visited {
	color: green;
	text-decoration: none;
}

a:hover, a:active {
	color: red;
	text-decoration: bold;