Ok, So I am relatively new to the forum coding thing but changing a color should not be too hard.
My Problem: is this I would like to change the color of the quote box that comes up when you post. It is a rather grayish color and i would like a white or something close to paper color.
Solution I would like It would be most helpful it someone could direct me to the area where the code can be changed, or a tutorial would be nice too,
Thanks for the help
For the background color look for this in index.css.
blockquote.bbc_standard_quote {
background-color: #D7DAEC;
}
For the border settings look for this.
blockquote.bbc_standard_quote, blockquote.bbc_alternate_quote {
background: url("../images/theme/quote.png") no-repeat scroll 0.1em 0.1em transparent;
border-bottom: 2px solid #9999AA;
border-top: 2px solid #9999AA;
color: #000000;
font-size: x-small;
line-height: 1.4em;
margin: 0.1em 0 0.3em;
overflow: auto;
padding: 1.1em 1.4em;
}
;)