The spacing in 2.jpg is much larger than 1.jpg. 1.jpg is using the sample editor on the telerik site. The 2.jpg image is on my website. How can I make my site look like the telerik site?
The code I am using follows;
<telerik:RadEditor ID="ed1Rad" runat="server" Visible="true" EditModes="Preview" Style="overflow: scroll; border: 1px solid black;" Height="300" />
4 Answers, 1 is accepted
Hello Pat,
Our demos default to the Silk skin which has slightly larger dimensions than the Default skin. Also, RadEditor has different default dimensions for skins like Silk, Glow, MetroTouch, BlackMetroTouch and, theferore, if you do not specify the Width property, it can have different default values. The same applies for the Height property.
Regards,
Telerik
See What's Next in App Development. Register for TelerikNEXT.

Hello Pat,
In this case, my best advice is to upgrade to the latest version to benefit from the new features, skins and controls we have added in the last 4 years.
As for the paragraph spacing - this does not come from the skins of the control, but from the CSS the developer has provided to it, or from the CSS on the page.
By default, the editor takes the CSS rules from the page and imports them in its content area so it gets similar appearance and rules as the page it is used in. Thus, global selectors in the site stylesheet for paragraphs and line breaks are likely to cause such behavior. You can avoid inheriting them by specifying your own (or an empty) stylesheet in the CssFiles collection and for the ContentAreaCssFile http://www.telerik.com/help/aspnet-ajax/editor-content-area-custom-stylization.html.
Regards,
Telerik
See What's Next in App Development. Register for TelerikNEXT.
