MyBB Community Forums

Full Version: Text Size in Post
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hi want increase text size in post like 13-18 px how to do it
Open global.css , and in .post_body class, add the following attribute;
font-size: 19px;

Change 19 to as much bigger size you would like.
ACP >Templates & Style >Edit Theme >global.css >Edit Style >Selector .POSTE_CONTENT
AND EDIT
I THINK SO
i dont see this only heve this code??

.post_body {
	padding: 5px;
}

.post_content {
	padding: 5px 13px;
}

font-weight: bold;
}

font-size: 16px;
}
(2012-05-23, 09:38 AM)Yaldaram Wrote: [ -> ]Open global.css , and in .post_body class, add the following attribute;
font-size: 19px;

Change 19 to as much bigger size you would like.
.post_body {
    padding: 5px;
}

.post_content {
    padding: 5px 13px;
}

font-weight: bold;
}

font-size: EDITpx;
}
GOOD
its not good text its to small??

[Image: ScreenShot003-2.png]
Change 19 to something bigger value.
.post_body {
    padding: 5px;
}

.post_content {
    padding: 5px 13px;
}

font-weight: bold;
}

font-size: 25px;
}

Take this The code
(2012-05-23, 10:12 AM)human122 Wrote: [ -> ]
.post_body {
    padding: 5px;
}

.post_content {
    padding: 5px 13px;
}

font-weight: bold;
}

font-size: 25px;
}

Take this The code

What you're doing is not correct. The attributes should not be place outside the class's parenthesis.
Pages: 1 2