views:

2124

answers:

1

How can i customize the skin for CKEditor 3.0 I downloaded a new skin and i have this js powering it at the moment:

CKEDITOR.replace( 'pageBody',
    {
        toolbar :
        [
            ['Format'],
            ['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', '-', 'About']
        ],
    });

I hope its simple :/

+2  A: 

underneith the closing ], add...

skin : 'name_of_skin',

Shaun

shaun