MyBB Community Forums

Full Version: Text Size On News Bars
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Ive Noticed that there are two sizes of font on the News Bars here how can I do this?
There's not two sizes, some of it is just bold...

<strong>Text to be bold here</strong>
I found out what it was
<style type="text/css">
.newsbar_yellow {
	background: #FFF6BF;
	border-top: 2px solid #FFD324;
	border-bottom: 2px solid #FFD324;
	text-align: center;
	margin: 10px auto;
	padding: 5px 20px;
	font-weight: bold;
}
</style>

Instead It Should be

<style type="text/css">
.newsbar_yellow {
	background: #FFF6BF;
	border-top: 2px solid #FFD324;
	border-bottom: 2px solid #FFD324;
	text-align: center;
	margin: 10px auto;
	padding: 5px 20px;
	font-weight: standard;
}
</style>

Then you can do the <strong>and</strong>