MyBB Community Forums

Full Version: Some space in the css buttons?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

Can someone tell me how can I add some space below and above the New Thread button. As it's too close to each other and too close in the forum above. Hope someone could help me. Here's what I mean.

Screenshot:
[Image: lgtd162.png]

Thanks!
there are two occurrences of newthread button on forumdisplay_threadlist template
first one is like below
<div class="float_right">{$newthread}</div>
and second one is like below
<div class="float_right" style="margin-top: 4px;">{$newthread}</div>

for the above div elements, you can use inline css style codes margin-top and margin-bottom as required.
(see guide for css margin)