MyBB Community Forums

Full Version: How could I go about this?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: help.png]

How can I change the top text without changing the thread author text?

Sorry, I cannot figure out Huh
Add this to your CSS:

#panel a:link {
	color: #369;
	text-decoration: none;
}

#panel a:visited {
	color: #036;
	text-decoration: none;
}

#panel a:hover, a:active {
	color: #036;
	text-decoration: underline;
}

Adjust the colours to your liking.
(2012-04-17, 07:02 PM)Fábio Maia Wrote: [ -> ]Add this to your CSS:

#panel a:link {
	color: #369;
	text-decoration: none;
}

#panel a:visited {
	color: #036;
	text-decoration: none;
}

#panel a:hover, a:active {
	color: #036;
	text-decoration: underline;
}

Adjust the colours to your liking.

Thanks a lot!

Worked!