MyBB Community Forums

Full Version: change the background when quoting posts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how to change the background when quoting posts?

[attachment=33375]
global.css and search for something like quote and change the color there
Go to: ACP > Themes > Edit Your Theme > global.css > and find (something like this);
blockquote {
 border: 1px solid #ccc;
 margin: 0;
 background: #fff;
 padding: 4px;
}
and Add a color attribute to it like this;
color: #000000;

so it becomes;
blockquote {
 border: 1px solid #ccc;
 margin: 0;
color: #000000;
 background: #fff;
 padding: 4px;
}
no, do not add color

just change backgroud: #f0f7fc;
thank you! =)