MyBB Community Forums

Full Version: is there anyway to change the color of the quote text?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there anyway to change the text color & background of a quote?
Yes, There is a way:

ACP > Templates & Style > Themes > Your Theme > global.css

Find:
blockquote {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #CCCCCC;
    margin: 0;
    padding: 4px;
}

Change the background color there. Also add this part:
color: your text color;

so it should look like this:
Quote:blockquote {
background: none repeat scroll 0 0 your background color;
border: 1px solid #CCCCCC;
margin: 0;
padding: 4px;
color: your text color;
}

Save & its done Big Grin