MyBB Community Forums

Full Version: Adding Quote Borders?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys, on my forum, the borders when you quote aren't very visible. How do I change it to something like this?

[Image: oRc3L.png]

I know it has something to do with changing something here:

Quote:blockquote {
border: 1px solid #ccc;
margin: 0;
background: #FFFFFF;
padding: 4px;

}

blockquote cite {
font-weight: bold;
border-bottom: 1px solid #ccc;
color: #000000;
font-style: normal;
display: block;
margin: 4px 0;
}

Please, anyone?
PLEASEEE
Its simple, Just Change above to this;
blockquote {
border: 1px dashed #ccc;
margin: 0;
background: #FFFFFF;
padding: 4px;
}

blockquote cite {
font-weight: bold;
border-bottom: 1px dashed #ccc;
color: #000000;
font-style: normal;
display: block;
margin: 4px 0;
}
(2012-01-15, 05:14 AM)Yaldaram Wrote: [ -> ]Its simple, Just Change above to this;
blockquote {
border: 1px dashed #ccc;
margin: 0;
background: #FFFFFF;
padding: 4px;
}

blockquote cite {
font-weight: bold;
border-bottom: 1px dashed #ccc;
color: #000000;
font-style: normal;
display: block;
margin: 4px 0;
}

I just did that, nothing changed.
It should. Try to clear your Browser's Cookies and Clear its Cache.