erm what do you mean quote box? as in this
? you want that to have a red border instead?
hmmm you'd probably have to add your own CSS. the easiest way would be to use a simple CSS class:
in the MAIN CSS at the bottom where it says additional CSS put this:
.quoteborder {
border-top: solid 1px #ff0000;
border-left: solid 1px #ff0000;
border-right: solid 1px #ff0000;
border-bottom: solid 1px #ff0000;
}
Then in Postbit_legacy template find the area involving quotes (can't think from the top of my head) and put a div tag over them <div style="quoteborder">Quote code structure here</div>
hope this has helped a little, i'm still learning myself ^_^.