I have a CKEditor used to edit a text in a web-page.

In the web-page, the text renders in its context and therefore follows the page CSS formatting.

My question is how to tell CKEditor to apply a CSS style-sheet to the editor rendering ? Without of course changing the generated source ?

My code :

<textarea class="ActuContent" name="actu-content" cols="100" rows="20">my content></textarea>
<script type="text/javascript">
        window.onload = function()
        {
                CKEDITOR.replace( 'actu-content' );
        };
</script>

and my CSS :

.ActuContent{
    padding:10px 10px 10px 10px;
    color:#416a8b;
    font-size:1.6em;
}

And my CKEditor Config.js file only contains the toolbar config.

CKeditor does not apply the settings of ".ActuContent" to its rendering ...

link|improve this question

feedback

4 Answers

The actual best answer to this question would be:

CKEDITOR.config.contentsCss = '/mycustom.css'; CKEDITOR.replace('myfield');

Because you probably would like to have different styles in different editors. If you change the main content.css like Jalil did, you would not be able to do that.

Regards, Rene

link|improve this answer
feedback
up vote 2 down vote accepted

I found a very easy way to answer my question :

the content.css file in CKEditor directory !

I only had to put in the style I wanted to be applied inside the Editor :

body {
    color: #416a8b;
    font-family: Arial;
    font-size: 18px;
    font-weight: 400;
   text-align: left;
}

That's all :-)

link|improve this answer
feedback

CKEditor uses a DIV with normal HTML elements to represent the text you're editing. Just have a look at the content of this DIV and write a appropriate style sheet.

Of course, this only works if you don't modify the output of CKEditor before you render it.

link|improve this answer
Thanks, I try this right now. – Jalil Dec 11 '09 at 8:43
I don't understand how to apply like you said. I update my question to put some code in it ... – Jalil Dec 11 '09 at 9:50
Edited my question to put some code. Can you explain your idea ? – Jalil Dec 11 '09 at 9:53
In fact, I don't understand how you "have a look at the content of this DIV ? – Jalil Dec 11 '09 at 9:54
In the HTML that your browser displays, there is a DIV in the place where your textarea was. Use the debug tools of your browser to have a look inside of it. stackoverflow.com/questions/1887216/… – Aaron Digulla Dec 11 '09 at 10:38
show 6 more comments
feedback

See this posting:

http://stackoverflow.com/questions/1844569/ckeditor-class-or-id-for-editor-body

The solution posted by nemisj will set the class name onto the body of the editor's editable area.

You can do this in an editor onload function. Call this before you call .replace.

CKEDITOR.on( 'instanceReady', function( ev )
     {
         CKEDITOR.instances.e1.document.$.body.className = "foo";
     });
link|improve this answer
This seems to me a very elegant solution. Trying it right now. – Jalil Dec 11 '09 at 18:41
This solution didn't work for me :-( It gave me a Javascript error (Internet Explorer 6 / 8). – Jalil Dec 14 '09 at 4:39
feedback

Your Answer

 
or
required, but never shown

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