Good Day All
i have a Toolbar button that has a textbox and image buttons, now my problem is that the controls inside the toolbar are not aligned correctly. i would like to have them centered. I have attached the image on how they look and the markup to the definition is
Thanks
i have a Toolbar button that has a textbox and image buttons, now my problem is that the controls inside the toolbar are not aligned correctly. i would like to have them centered. I have attached the image on how they look and the markup to the definition is
<telerik:RadToolBar ID="RadToolBar1" Runat="server" Width="100%" Height="100%" Skin="Forest"> <Items> <telerik:RadToolBarButton Width="90%" Text="Button1" runat="server"> <ItemTemplate> <asp:ImageButton ID="btnoweb" Height="50" Width="50" runat="server" ImageUrl="~/images/Picture3.png" /> <asp:ImageButton ID="btnCalender" Height="50" Width="50" runat="server" OnClick="btnCalender_Click" ImageUrl="~/images/CalenderView.png" /> <asp:ImageButton ID="btnAttach" Height="50" Width="50" runat="server" ImageUrl="~/images/Attach.png"/> <asp:Menu ID="mnuMenu" Height="50" Width="50" runat="server" ></asp:Menu> <asp:ImageButton ID="imgpose" Height="50" Width="50" runat="server" ImageUrl="~/images/Picture5.png"/> <asp:TextBox ID="txtsearch" Width="650px" Height="40px" runat="server" ></asp:TextBox> <asp:ImageButton ID="ImageButton1" Height="50" Width="50" runat="server" ImageUrl="~/images/Cancel.png" /> </ItemTemplate> </telerik:RadToolBarButton> </Items> </telerik:RadToolBar>Thanks