Powered by SMF 1.1.14 | SMF © 2006-2011, Simple Machines LLC
Theme: Dafault
Hi!
Where exactly must I go to enlarge the size of the font ONLY AT THE POST/MESSAGES CONTENT to 12 instead of 10 ?
Thanks in advance !
Roberto
In style.css find this:
/* Posts and personal messages displayed throughout the forum. */
.post, .personalmessage
{
width: 100%;
overflow: auto;
line-height: 1.3em;
}
Change to this:
/* Posts and personal messages displayed throughout the forum. */
.post, .personalmessage
{
width: 100%;
overflow: auto;
line-height: 1.3em;
font-size: 12pt;
}
This will also affect text size in PMs.
Hi Krash !
Thanks a lot ! Just what I wanted !
Roberto