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

Changing the cke_skin_kama css without editing css file

HM666

New member
Right now the only way to edit the border around the editor is change the code in the editor.css file. It works but it will make the change globally and not in just the skin you want. I only want it to change in the skin I want to have it in.

Here is what I've tried in the skin templates:

Added this to additional.css...

Code:
span.cke_skin_kama {
border:1px solid #191919 !important;
}

Did not work...

Tried this instead someone suggested it on another thread...

Code:
div[id^="span.cke_skin_kama"] {
border:1px solid #191919 !important;
}

And sadly that did not work either.

And this...

Code:
div[id^=".cke_skin_kama"] {
border:1px solid #191919 !important;
}

Did not work either...

Tried this as well...

Code:
.cke_skin_kama {
border:1px solid #191919 !important;
}

Again no joy...

I KNOW this is the part that changes the color of that border because I edited it in the editor.css file first to make sure that I had the right tag. Is there any way to force this to change ONLY in the skin I want it to?
 
Last edited:
Nevermind folks I just decided to delete the border all together. It looks cleaner that way anyways. And I'll be able to have the same look for all skins. :)
 
I'd say... That upon making these changes you might want to then, clear browser cache in order to see the change. I had this happen once, where a change was made and I KNEW it should work, drove me batty.
 
Back
Top