MyBB Community Forums

Full Version: make all text in post bold
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how to make all text in post bold for entire forum?
search '.post_content' in global.css:
.post_content {
	padding: 5px 10px;
}
Change to:
.post_content {
	padding: 5px 10px;
	font-weight: bold;
}
(2011-12-14, 05:47 PM)Yaldaram Wrote: [ -> ]search '.post_content' in global.css:
.post_content {
	padding: 5px 10px;
}
Change to:
.post_content {
	padding: 5px 10px;
	font-weight: bold;
}
you the man!