2
Hi,
This is from my theme's style.css file:
div.xoopsQuote {
background:url(images/box2_back.gif);
color:inherit;
border: 1px inset #CCC;
padding: 6px;
overflow: auto;
width: 95%;
}
This is from the ubiquitous "bluehue" theme's style.css file:
div.xoopsCode, div.xoopsQuote {
text-align: left;
background: #efefef;
color: #333;
border: 1px inset #333;
font-family: "Courier New", Courier, monospace;
padding: 5px;
margin: auto;
width: 80%;
max-height: 200px;
overflow: auto;
Basically, search for "div.xoopsQuote" in your theme's style.css file
HTH