This is a migrated thread and some comments may be shown as answers.

Break toolbar items in two lines

1 Answer 140 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Ajay
Top achievements
Rank 1
Ajay asked on 14 May 2013, 11:27 AM
Hello,

I need to place toolbar items in two lines
But don't know how to do. here is attached Image

1 Answer, 1 is accepted

Sort by
0
Ajay
Top achievements
Rank 1
answered on 16 May 2013, 10:30 AM
i have found my Answer. like below..

css
 ul
        {
            float: none !important;
        }
        ul.reToolbar
        {
            float: left !important;
        }



<telerik:RadEditor ID="RadEditor1" Width="100%" Height="670px" AutoResizeHeight="true"
                runat="server"  >
                <Tools>        ////   insert more tools for break
                    <telerik:EditorToolGroup>
                        <telerik:EditorTool Name="DocumentManager" />
                        <telerik:EditorTool Name="ImageManager" />
                        <telerik:EditorSeparator />
                      
                    </telerik:EditorToolGroup>
                </Tools>
                <Tools>
                    <telerik:EditorToolGroup>
                        <telerik:EditorTool Name="InsertOrderedList" />
                        <telerik:EditorTool Name="InsertOrderedList" />
                      
                    </telerik:EditorToolGroup>
                </Tools>
            </telerik:RadEditor>
Tags
Editor
Asked by
Ajay
Top achievements
Rank 1
Answers by
Ajay
Top achievements
Rank 1
Share this question
or