Closed (fixed)
Project:
Tiny Tiny MCE
Version:
5.x-1.5
Component:
User interface
Priority:
Normal
Category:
Support request
Assigned:
Reporter:
Created:
15 Nov 2008 at 14:49 UTC
Updated:
13 Dec 2008 at 09:22 UTC
Not that this is a big deal, but why are the buttons at the bottom of the textarea box in the simple mode, but at the top in the advanced mode? I would like the buttons to be at the top in simple mode as well.
And thanks for a great module, it looks like it is exactly what I need.
Comments
Comment #1
fleetcommand commentedThat's the default of the TinyMCE Editor. If you want your menu bar on top, go to admin/settings/tinytinymce, then specify an init script for simple mode to use the "advanced" theme.
Then you can specify the toolbar and statusbar position like:
theme_advanced_toolbar_location : "top",
theme_advanced_statusbar_location : "bottom",
etc.
Comment #2
Steve Lockwood commentedComment #3
twowheeler commentedExcellent. Thanks!
Comment #4
bgogoi commentedvery sorry for my poor understanding?
Can u please post the modified init cods for simple init sript?
I tried this, but didn't work.
tinyMCE.init({
mode : "exact",
elements: "edit-body",
init_instance_callback : "resizeEditorBox",
theme : "simple",
theme_advanced_buttons1 : "bold,italic,underline,justifyleft,justifycenter,justifyright,bullist,numlist",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "center",
});