Postbit Space

DRE

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

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

space.webp
 
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;
}
 
Top Bottom