I've got a page where I load screen.css which contains an evil rule, which for various reasons I cannot remove or modify:

a {
    background: red !important;
}

I use CKEditor 3.x on the same page and the problem is that, no matter which style I choose (v2, kama, office2003), the buttons of the editor look red.

FCKeditor 2.x didn't have an issue with this because it was creating an iframe to host the whole editor instance. Thus the evil css snippet didn't even exist in its page.

The new CKEditor 3.x though uses divs and tables to host the editor wrapper and buttons and then an iframe just for the rich textarea content.

Any solutions for this?

thanks

link|improve this question

feedback

2 Answers

Ah, fun.

Specificity to the rescue.

Create a new stylesheet that overrides that a { color: red !important} }. Make it something that suits you, and make sure that it ALWAYS gets loaded after your evil style sheet and before the CKEditor sheet. For example:

a { color: lemonchiffon !important; }

But please read the link...specficity is fairly specific.

link|improve this answer
The evil css snippet was an example. Imagine that there are many evil rules and also each one of those (e.g padding: 0 !important) overrides many different CKEditor rules which I cannot easily replicate, unless I completely rewrite the skin. I was looking for a way to inject CKEditor within an iframe. – cherouvim Oct 5 '10 at 15:35
feedback
up vote 0 down vote accepted

The 2.x style wrapper iframe (which would by default solve this problem) was removed for performance reasons and is not possible via an option but only if I implement it my self.

What I did to overcome this problem was to modify the css files of the "kama" skin, adding !important rules to where I needed them. I don't feel this is an acceptable solution though.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.