Now, to fix the quote mark issue you'll have to go to the
index.css file here:
/* A quote, perhaps from another post. */
blockquote.bbc_standard_quote, blockquote.bbc_alternate_quote
{
font-size: x-small;
color: #000;
line-height: 1.4em;
background: url(../images/theme/quote.png) 0.1em 0.1em no-repeat;
border-top: 2px solid #99A;
border-bottom: 2px solid #99A;
padding: 1.1em 1.4em;
margin: 0.1em 0 0.3em 0;
overflow: auto;
}
/* Alterate blockquote stylings */
blockquote.bbc_standard_quote
{
background-color: #d7daec;
}
blockquote.bbc_alternate_quote
{
background-color: #e7eafc;
}
Do get rid of the silly quotation mark you can remove this line:
background: url(../images/theme/quote.png) 0.1em 0.1em no-repeat;Or if you want to leave the background tag in as a reminder of where its at I
think you can replace it as such:
background: null. (El Diablo has pointed out that
background: " " may work better.) I could be mistaken on the syntax.
You can play with the rest of the blockquote with the syntax in the above quote. If you want to make a box I
believe the tags are
border-left and
border-right.
Someone please correct me if I made a mistake.
(Also, Fred just changed the smiles again. HI FRED!)