I have a problem where the content in the editor breaks its formatting when its Enabled (in edit mode) i have a parent div with the class "center" that sets the text alignment and the editor shows the content correctly when Enabled is set to False (view mode), but as soon as its in edit mode it aligns the content to the Left.
Any help is appreciated,
Christian
.
center
{
text-align
:
center
!important
;
}
<
section
class
=
"blue darken-4 white-text padding bgMonster"
>
<
div
class
=
"wrapper center padding"
>
<
telerik:RadEditor
ID
=
"edSLPDesc"
runat
=
"server"
Enabled
=
"False"
Width
=
"100%"
ContentAreaMode
=
"Div"
AutoResizeHeight
=
"True"
NewLineMode
=
"Br"
BorderStyle
=
"None"
data-page
=
"Default"
data-section
=
"slpDesc"
EditType
=
"Inline"
ToolbarMode
=
"ShowOnFocus"
EditModes
=
"Design, Html"
>
<
Content
>
<
h4
><
em
>text goes here...</
em
></
h4
>
</
Content
>
</
telerik:RadEditor
>
</
div
>
</
section
>