I setup TextAreaStyle to a specific width.
I also need to make it stay centered.
It's centered only on load, after I switch to another tab, it gets left-aligned.
The select tab on load is 'View'
<body style="margin:0px">
<form id="form1" runat="server" >
<CE:Editor ID="Editor1" runat="server"
ConfigurationPath="~/cuteeditor.config"
ActiveTab="View"
ResizeMode="None"
ShowWordCount="False"
Height="100%" Width="100%">
<TextAreaStyle Width="320px" />
</CE:Editor>
</form>
</body>
How can I make it to stay centered?
Thanks!