I'm loading everything with the defaults and after initially loading everything looks fine but the toolbar seems to expand to become taller and when you have text that requires a scrollbar you can't see the bottom right of the scrollbar with the arrow and you also can't see the last line you're typing because it is basically cut off.
So I guess in short the toolbar becomes taller than it should be and cuts off the textarea and scrollbar
Any idea how to fix it?
So I guess in short the toolbar becomes taller than it should be and cuts off the textarea and scrollbar
Any idea how to fix it?
RE: toolbar expands and cuts off scrollbar/bo
I fixed it myself as usual.....LOL
I took out all of the '-' which makes a new band and that is what the problem was. Read http://wiki.fckeditor.net/Developer%27s ... on/Toolbar
for full info on modifying the toolbar.
Here is what I'm using (basically the default without the extra bands):
FCKConfig.ToolbarSets["Mine"] = [
['Source','DocProps','Save','NewPage','Preview','Templates'],
['Cut','Copy','Paste','PasteText','PasteWord','-','Print','SpellCheck'],
['Undo','Redo','-','Find','Replace','SelectAll','RemoveFormat'],
['Bold','Italic','Underline','StrikeThrough','Subscript','Superscript'],
['OrderedList','UnorderedList','Outdent','Indent'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'],
['Link','Unlink','Anchor'],
['Image','Flash','Table','Rule','Smiley','SpecialChar','UniversalKey'],
['Form','Checkbox','Radio','TextField','Textarea','Select','Button','ImageButton','HiddenField'],
'/',
['Style','FontFormat','FontName','FontSize'],
['TextColor','BGColor'],
['About']
] ;