MyBB Community Forums

Full Version: Change font size, italicize, font text
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I change the font size, italicize it, and change the font text in the postbit template?

This is how I changed the color: <span style='color: #928F8A'> so it's some what in that format
(2013-03-24, 09:36 PM)effone Wrote: [ -> ]http://www.w3schools.com/css/css_font.asp

That looks real confusing Confused

Is there an easier way?
Add a class in postbit template (ACP -> Templates and styles -> templates -> <your template theme set> -> postbit templates -> postbit template (or classic, depends on what postbit are you using on your forum) and in table tag find class="tborder" and a class postbit ( class="tborder postbit" ) and save it.

in your global.css add

.postbit {
font-size:15px; /*Font size*/
font-style:italic;
color:#ffffff;
}

save it.

Change the values per your requirements.

If you want post body only (content where post message is displayed) add .post_body to your global.css and repaste the content above.
(2013-03-24, 10:10 PM)Johnny S Wrote: [ -> ]Add a class in postbit template (ACP -> Templates and styles -> templates -> <your template theme set> -> postbit templates -> postbit template (or classic, depends on what postbit are you using on your forum) and in table tag find class="tborder" and a class postbit ( class="tborder postbit" ) and save it.

in your global.css add

.postbit {
font-size:15px; /*Font size*/
font-style:italic;
color:#ffffff;
}

save it.

Change the values per your requirements.

If you want post body only (content where post message is displayed) add .post_body to your global.css and repaste the content above.

Worked like a charm. Thank you bro Smile