DRE Well-known member Oct 3, 2012 #1 How do I space all this out? The message text is too close to the quote and too close to the signature.
How do I space all this out? The message text is too close to the quote and too close to the signature.
Jake Bunce Well-known member Oct 3, 2012 #2 Admin CP -> Appearance -> Templates -> EXTRA.css Code: .bbCodeBlock { margin-bottom: 30px !important; } .signature { margin-top: 30px !important; } Upvote 0 Downvote
Admin CP -> Appearance -> Templates -> EXTRA.css Code: .bbCodeBlock { margin-bottom: 30px !important; } .signature { margin-top: 30px !important; }
DRE Well-known member Oct 3, 2012 #3 Jake Bunce said: Admin CP -> Appearance -> Templates -> EXTRA.css Code: .bbCodeBlock { margin-bottom: 30px !important; } .signature { margin-top: 30px !important; } Click to expand... Thanks but I'm talking bout the space in between the bottom of the quote and the beginning of the message. Upvote 0 Downvote
Jake Bunce said: Admin CP -> Appearance -> Templates -> EXTRA.css Code: .bbCodeBlock { margin-bottom: 30px !important; } .signature { margin-top: 30px !important; } Click to expand... Thanks but I'm talking bout the space in between the bottom of the quote and the beginning of the message.
Russ Well-known member Oct 3, 2012 #4 8thos said: Thanks but I'm talking bout the space in between the bottom of the quote and the beginning of the message. Click to expand... His first snippit should do .bbCodeQuote Upvote 0 Downvote
8thos said: Thanks but I'm talking bout the space in between the bottom of the quote and the beginning of the message. Click to expand... His first snippit should do .bbCodeQuote
DRE Well-known member Oct 3, 2012 #5 Russ said: His first snippit should do .bbCodeQuote Click to expand... Thanks it was margin bottom of bbcodequote. Upvote 0 Downvote
Russ said: His first snippit should do .bbCodeQuote Click to expand... Thanks it was margin bottom of bbcodequote.
M MagnusB Well-known member Oct 3, 2012 #6 Russ said: His first snippit should do .bbCodeQuote Click to expand... 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; } Upvote 0 Downvote
Russ said: His first snippit should do .bbCodeQuote Click to expand... 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; }
xIsabel38 Well-known member Oct 3, 2012 #7 This answered a question I had too, thanks! Upvote 0 Downvote