Re: [jQuery] fckeditor (plugin) editorarea css

2010-01-16 Thread Per Söderlund
Ok. Found the solution by myself. It's in the config syntax. This works: $(function(){ $.fck.config = {path: 'fckeditor/'}; $('textarea#fck1').fck({config: {EditorAreaCSS: 'css/blogheader.css'}, height: 50}); $('textarea#fck2').fck({config: {EditorAreaCSS: 'css/blogpost.css'}, height:490}); });

[jQuery] fckeditor (plugin) editorarea css

2010-01-15 Thread Per
Hi all! Fairly new to jquery and fckeditor plugin, trying to change the editor css. These lines dont work: $(function(){ $.fck.config = {path: 'fckeditor/'}; $('textarea#fck1').fck({EditorAreaCSS: '/css/blogheader.css', height: 30}); $('textarea#fck2').fck({EditorAreaCSS: '/css/blogbody.css', hei