Does anyone know how i can make my textarea in a ckeditor object, use a class or custom style so i can show to the user something similar to what is getting rendered in the site?

Thanx

So i'm using bodyClass: 'class' in the config object, i use firebug and see the iframe body has my class applied, but it doesn't get the classes properties neither from my CSS, nor from contents.css (ckeditor)...

Well i was able to do it, adding an event to the object like this:

editor.on('instanceReady', function(){
        $('#'+divname).find('iframe:first').contents().find('body').css({
                'background-color':'#000000',
                'font-family':'arial',
                'font-size':'12pt',
                'color':'#cdcdcd'
        });
    });  

if anyone has the real solution, i think bodyClass should be it, i will gladly change my code.

Thanx

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I just stumbled on this youtube video. It looks like what you need.

link|improve this answer
yes, that's fine. it's almost exactly what i was doing but from someone who knows the api way better than me – André Alçada Padez Mar 12 '11 at 20:20
feedback

Your Answer

 
or
required, but never shown

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