MyBB Community Forums

Full Version: Quote Template
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello...

Can someone tell me where is the 'Quote Template' located at ?
If you're talking about this type of box:
you Wrote:something

It should be in the Master style, in the Extra CSS called

.quote_header
.quote_body
I am not talking about the style..

I want to remove the space here..e.g, when u quote someone

Hello Wrote:
<-----------------I want to remvoe this space
Blah blah blah
Heloo there

in The master themes options
go to Additional CSS Atrributes

find

.quote_body {
	background: #fff;
	border: 1px dashed #000;
	border-top: 0;
	color: #000;
	padding: 4px;
	margin: 0 auto 8px auto;
}

change margin: 0 auto 8px auto;

to margin: 0 auto auto auto;

regards
No difference.
Set it to: 0px auto 8px 0px;
Ok..Still no use..I will let u see my code..

.quote_header {
margin: 0 auto auto auto;
padding: 4px;
border-top: 1px solid #000000;
border-left: 1px solid #000000;
border-right: 1px solid #000000;
color: #ffffff;
background: #f08b46;
font-weight: bold;
}

.quote_body {
background: #ffffff;
border-bottom: 1px solid #000000;
border-left: 1px solid #000000;
border-right: 1px solid #000000;
border-top: 0;
color: #000000;
padding: 4px;
margin: 0px auto 8px 0px;
}
Quote:Set it to: 0px auto 8px 0px;
:/ the last part u have set to zero is the left side Confused

anyway use this

Quote: .quote_header {
background: #fff;
border: 1px dashed #000;
border-bottom: 0;
color: #000;
font-weight: bold;
margin: 0 auto 0 auto;
padding: 4px 4px 0 4px;
}

.quote_body {
background: #fff;
border: 1px dashed #000;
border-top: 0;
color: #000;
padding: 0 4px 4px 4px;
margin: 0 auto 8px auto;
}

i hade to set the margin for bottom part of the header to zero, but the major change took place in the padding!
regards