This question is locked. New answers and comments are not allowed.
I am using the MVC Editor in several pages, but I can not find out how to set alignment, size, padding etc. on images that I insert. Mybe I am forgetting something in Filebrowser settings. Here's my code:
@( Html.Telerik().EditorFor(x => x.Article.Content) .Name("rtxtEditor") .Localizable("nb-NO") .Tools(tools => tools.Clear() .Bold() .Italic() .Underline() .Separator() .FontName() .FontSize() .Separator() .JustifyLeft() .JustifyCenter() .JustifyRight() .JustifyFull() .Separator() .InsertUnorderedList() .InsertOrderedList() .Separator() .Outdent() .Indent() .Separator() .CreateLink() .Unlink() .Separator() .InsertImage()) .FileBrowser(settings => settings .Browse("Browse", "ImageBrowser") .Upload("Upload", "ImageBrowser") .CreateDirectory("CreateDirectory", "ImageBrowser")))