PDA

View Full Version : Seperate posts // Gap between posts?


TC-Jamech
07-18-2015, 04:45 PM
I'm fairly new to vBulletin 4, does anyone know how I can make it so that there's a gap between replies/posts?

https://vborg.vbsupport.ru/external/2015/07/3.gif
https://vborg.vbsupport.ru/external/2015/07/4.gif

MarkFL
07-18-2015, 04:59 PM
Try adding the following CSS selector to your "additional.css" template:

li.postbit, li.postbitlegacy {
margin-bottom: 10px !important;
}

You want to change the value "10px" to suit your needs. Increase the number for a larger gap, and decrease for a smaller gap.

TC-Jamech
07-18-2015, 05:18 PM
Try adding the following CSS selector to your "additional.css" template:

li.postbit, li.postbitlegacy {
margin-bottom: 10px !important;
}

You want to change the value "10px" to suit your needs. Increase the number for a larger gap, and decrease for a smaller gap.

Thank you, works like a charm. :)