MyBB Community Forums

Full Version: how to add the line
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to add a line in the post style.

[Image: aadjK7KN.jpg]

From

To
[Image: aacAbB1n.jpg]

How can I change it.
In your theme's global.css, find;
.post_body {
	padding: 5px;
}
and ADD line-height property like this;
.post_body {
	padding: 5px;
line-height: 23px;
}