• OzzModz is no longer taking registrations. All registrations are being redirected to Snog's Site
    All addons and support is available there now.

Change Color

Just to get you started or at least in the general vicinity. You'll probably have to do lots of tweaking to get it to look right. The CKEditor styling is difficult. Some of it is set in javascript, some in stylevars.
Code:
.cke_skin_kama .cke_panel{
background:orange;
}
 
Last edited:
I found I had to add the !important qualifier to get it to work on my local dev site:

HTML:
.cke_skin_kama .cke_panel{
	background:orange !important;
}
 
Back
Top