Hi,
I am loading my tinyMCE inside my jquery document ready function. It is loaded in advanced mode, and I am also setting my toolbar to appear aligned 'left'. However this is still not appearing the way I imagine it should. What could be the problem?
tinyMCE.init({
mode : "exact",
elements : "txtinput",
theme : "advanced",
plugins: "searchreplace, contextmenu",
theme_advanced_buttons1 : "ltbtn,cut,copy,paste,pastetext,pasteword,undo,redo,bold,italic,underline,strikethrough,justifyleft,justifycenter,justifyright,justifyfull",
theme_advanced_buttons2 : "",
theme_advanced_buttons3 : "",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
//...more...
});