Postbit Space

DRE

Well-known member
Licensed customer
How do I space all this out?

The message text is too close to the quote and too close to the signature.

space.webp
 
Admin CP -> Appearance -> Templates -> EXTRA.css

Code:
.bbCodeBlock
{
margin-bottom: 30px !important;
}
 
.signature
{
margin-top: 30px !important;
}
Thanks but I'm talking bout the space in between the bottom of the quote and the beginning of the message.
 
His first snippit should do .bbCodeQuote
Either way works, all bbcode blocks have the class .bbCodeBlock, quote has the additional .bbCodeQuote. For example, a code block have class="bbCodeBlock bbCodeCode". Default style use this to set the spacings:
Code:
.bbCodeBlock {
margin: 1em 140px 1em 0;
border: 1px solid #D7EDFC;
border-radius: 5px;
}
 
Back
Top Bottom