MyBB Community Forums

Full Version: [Help] THEAD style not the same?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am trying to create a new style but I notice the difference between my Categories's THEAD style as compared to my Board Statistics' THEAD style.

Anyone know whats wrong? Look at the screenshot provided. The font size is different =/ Angry

[attachment=10831]
link to forum?
It's probably because you've got your:

.thead {
	background: #EEE;
	color: #FFF;
	font-size: 10pt;
}

Set to a bigger font than:

.thead a:link {
	color: #FFF;
	text-decoration: none;
}

.thead a:visited {
	color: #FFF;
	text-decoration: none;
}

.thead a:hover, .thead a:active {
	color: #EEE;
	text-decoration: underline;
}
thanks, fixed it!

Added the font-size to the rest of the .thead css