Hi! I just started to use CKEditor... but I already got some problems with it.
<script type="text/javascript">
$(document).ready(function(){
CKEDITOR.replace('.ckeditor', {
toolbar: 'Basic',
uiColor: '#9AB8F3'
});
});
</script>
Nothing is changing...
I tried to set width:100, height:100;
But still nothing changes. What do I have to do, to get this to work?
Thanks in advance!

config.js:
config.js:
CKEDITOR.editorConfig = function( config ) { config.language = 'pl'; config.uiColor = '#AADC6E'; config.height = '600px'; };Yes of course... I can use
Yes of course... I can use the config.js
But if I want this style only on this page and I want to load the configs when I create the CKEDITOR instance.
Why does my code not work?
Only one page:
Only one page:
<script type="text/javascript"> //<![CDATA[ CKEDITOR.replace( 'editor1', { uiColor: "#AADC6E", height : "500px", }); //]]> </script>