Hi,
I am trying to show only 4 tools in an editor - very similar to what is going on in the editor I am using to write this post.
My code is simply:
The css file changes the background of the editor so that it is not using the master page's background.
Now this looks fine in VS 2008, but when I run it, 16 buttons appear in a single row, and when I hover over one, 4 of them "select."
It is true that the 16 buttons only do the 4 functions I am looking for, but I only want the 4 buttons. What am I missing?
Thanks.
I am trying to show only 4 tools in an editor - very similar to what is going on in the editor I am using to write this post.
My code is simply:
<telerik:RadEditor ID="RadEditor1" runat="server"> |
<Tools> |
<telerik:EditorToolGroup> |
<telerik:EditorTool Name="Bold" /> |
<telerik:EditorTool Name="Italic" /> |
<telerik:EditorTool Name="Underline" /> |
<telerik:EditorTool Name="InsertUnorderedList" /> |
</telerik:EditorToolGroup> |
</Tools> |
<CssFiles> |
<telerik:EditorCssFile Value="~/Styles/Editorial.css" /> |
</CssFiles> |
</telerik:RadEditor> |
The css file changes the background of the editor so that it is not using the master page's background.
Now this looks fine in VS 2008, but when I run it, 16 buttons appear in a single row, and when I hover over one, 4 of them "select."
It is true that the 16 buttons only do the 4 functions I am looking for, but I only want the 4 buttons. What am I missing?
Thanks.