MyBB Community Forums

Full Version: Where do I change in the CSS font size of the POST. Thanks in advance
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Where do I change in the CSS font size of the POST.

Thanks in advance
Open global.css and edit .post_body

and add
font-size: --px;

Original
.post_body {
    clear: both;
    padding: 5px;
}

Example of edited version
.post_body {
    clear: both;
    padding: 5px;
    font-size: 18px;
}