MyBB Community Forums

Full Version: Looking for minimalist white + grey theme.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Can anyone help me find something like this?
MrDoom Wrote:http://mods.mybboard.net/view/ndesign

That's perfect! Thank you!
http://forums.beywiki.com

Anyone know how to get rid of the ugly green on those top links? Sad They wreck the whole thing.
The colour for those links is set in your additional CSS for your theme. In particular, this section:
.menun li a:link{
	color: #ccff00; 
	text-decoration: none;
	padding-bottom: 2px; 
}
.menun li a:visited {
	color: #ccff00; 
	text-decoration: none;
}
.menun li a:hover {
	color: #FFFF00;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #FFFF00;
}
Thank you very much!