MyBB Community Forums

Full Version: Add space between posts and quote
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to add some space between a quote and the responding text?

Thanks in advance.
I have the same issue, any help?
In global.css find blockquote and add margin-bottom.

blockquote {
.
.
margin: 0;
margin-bottom: 20px;
.
.
}

Adjust px value as you need.
(2013-06-03, 08:36 AM)effone Wrote: [ -> ]In global.css find blockquote and add margin-bottom.

blockquote {
.
.
margin: 0;
margin-bottom: 20px;
.
.
}

Adjust px value as you need.

Again, you're great!

Thank you very much!