MyBB Community Forums

Full Version: Make text bold by default?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there anyway to make text in threads/posts bold by default?
ACP -> Templates and Styles -> Themes -> Your theme -> global.css -> Edit the settings you want.
Just for you or for everyone?
If you want to give each user its own post style: http://mods.mybb.com/view/default-post-style

For everyone, search '.post_content' in global.css:
.post_content {
	padding: 5px 10px;
}
Change to:
.post_content {
	padding: 5px 10px;
	font-weight: bold;
}
that worked! thanks so much
(2011-05-08, 10:45 PM)mxx Wrote: [ -> ]that worked! thanks so much

You're welcome Wink
I changed my forum to classic mode and now this isn't working. please help
In postbit_classic template, find;
<td>{$post['posturl']}
and Change it into;
<td class="post_content">{$post['posturl']}