MyBB Community Forums

Full Version: Remove space between posts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,
I want to remove the space between posts in threads.

[Image: 07a991aea3fc3c52aeede152795c800a.png]

EDIT:
I found what I have to change. I tested it from "Inspect Elements"
[Image: f6269255275660277f85ba4d1ae330c3.png]
Where can I find this line in ACP?

+ When I set 0px the line still there..
This code is located in postbit classic template
Go to postbit template and find:
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="{$post_extra_style} {$post_visibility}" id="post_{$post['pid']}">

Identify this:
{$post_extra_style}

Make it:
margin-top: 0; (or just remove it).

Do the same with postbit_classic template also ...
Fixed. Thank you!