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...
Did not work...
Tried this instead someone suggested it on another thread...
And sadly that did not work either.
And this...
Did not work either...
Tried this as well...
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?
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: