PDA

View Full Version : How do I change the quick reply editor background color??


mangoz
01-18-2015, 03:10 PM
I'm building a minimalist dark theme based on the stock Red layout.

As you can see, I want to make that white area black.
I've adjused every stylevar I can find without luck.

On mobile the background is black the way I want it to be.


Thank you for any assistance.:)

Replicant
01-18-2015, 03:57 PM
The background in the editor is hard coded #FFF in the editor css.
You can change the background color by over riding it in css_additional.css with

.cke_wysiwyg_frame, .cke_wysiwyg_div{background-color:#000!important}

mangoz
01-18-2015, 06:28 PM
The background in the editor is hard coded #FFF in the editor css.
You can change the background color by over riding it in css_additional.css with

.cke_wysiwyg_frame, .cke_wysiwyg_div{background-color:#000!important}


Worked like a champ. Thank you. I've got other simple questions in the vein but will make new threads. I really appreciate your fast response. Had spent a day trying to fix this myself.