hiya,
that would be the template bbcode_quote, in which the layout of the quote box is defined
you could for example exchange the border setting:
PHP Code:
border:inset 1px
with a new one like this:
PHP Code:
border: solid #xxxxxx 1px;
with xxxxxx being the color of your choice to achieve a 1px wide border in your color around the quote box
for the backgroundcolor you would cut out the
and put something like
PHP Code:
background: #xxxxxx;
with xxxxxx being the color of your choice
AFTER the border part that we just inserted, so that your tag would look like this:
PHP Code:
<div style="padding:$stylevar[cellpadding]px; border: solid #xxxxxx 1px; background: #xxxxxx;">
greetz
kreftt