MyBB Community Forums

Full Version: Change background color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How would I change the background color?

[Image: CEZpj8l.png]

I've went through global.css and trick dicking around with the blockquote with no success.


It is like this whenever you quote someone or reply to someone.
I believe the editor css loads right after the css3 style sheet.

Try something like this with !important for anything that you want to override for sure.



blockquote {
   background: #FFF !important;
}
(2015-03-30, 05:43 AM)ThemeFreaknet Wrote: [ -> ]I believe the editor css loads right after the css3 style sheet.

Try something like this with !important for anything that you want to override for sure.




blockquote {
   background: #FFF !important;
}

Would it be blockquote.cite? for the image above?

or just changing the text color of it would be fine too.
changing the background of "blockquote" would change it on all places... that is on the showthread page as well...

you need to actually edit the /jscripts/sceditor/textarea_styles/jquery.sceditor.default.css file and change the background for blockquote in that file... that will affect only the blockqutes in the editor area...
Okay cool. Thank you!