XF 1.5 How to increase the line space of Thread and Post Contents?

You'll need to be more specific as to what you're referring to.

Thanks for the reply.

test.png

I need to increase the space between lines.
 
Add this in your EXTRA.css:
Rich (BB code):
.messageText {
line-height: 2;
}
originally the value is 1.4, just change it to suit, you can use decimals ie: 1.8
if doesn't work add !important like:
Rich (BB code):
.messageText {
line-height: 1.8 !important;
}
Result:
2.gif
 
Top Bottom