I've tried several things in the CSS file to move a RadWindow's title further to the left. But can't figure out how to do it.
Here's my layout code:
Here's my layout code:
<telerik:RadWindow ID="rwDeleteMuckMoves" runat="server" Behaviors="Move" EnableShadow="true" VisibleStatusbar="false" VisibleTitlebar="true" Title="Confirm Deletion" BorderColor="Black" AutoSize="true" Modal="true" IconUrl=""> <ContentTemplate> <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <div class="dialogMain smallText" style="width:280px; padding:5px 0 0 0"> <div style="margin-left:auto; margin-right:auto; padding-bottom:5px; text-align:center"> <div style="text-align:left; padding:0 0 10px 12px"> <asp:Label ID="labelDeleteMuckMovesIntro" runat="server" /> </div> <%--OnClientItemChecked="ControlButtonFromRadListBoxCheckboxes(this, 'buttonDeleteMMTaskOK')"--%> <telerik:RadListBox ID="rlbDeleteMMTasks" runat="server" Width="90%" OnItemCreated="rlbDeleteMMTasks_ItemCreated" EnableDragAndDrop="false" CheckBoxes="true"> <ItemTemplate> <div class="smallText" style="text-align:left"> <table style="width:100%"> <tr> <td class="muckListPrimary" style="width:68%"> <asp:Label ID="labelMMtitle" runat="server" /> </td> <td style="text-align:right; width:32%"> <asp:Label ID="labelMMunits" runat="server" /> </td> </tr> <tr> <td style="width:60%"> <asp:Label ID="labelMMequip" runat="server" /> </td> <td style="text-align:right; width:40%"> <asp:Label ID="labelMMdist" runat="server" /> </td> </tr> </table> </div> </ItemTemplate> </telerik:RadListBox> </div> <div style="float:right; padding:5px 12px 5px 0"> <asp:Button ID="buttonDeleteMMTaskOK" runat="server" Text="OK" Width="50" CssClass="smallText" Enabled="false" OnClick="buttonDeleteMMTaskOK_Click" /> <asp:Button ID="buttonDeleteMMTaskCancel" runat="server" Text="Cancel" Width="50" CssClass="smallText" OnClientClick="HideDialog('rwDeleteMuckMoves')" /> </div> <div style="height:20px"> </div> </div> </ContentTemplate> </asp:UpdatePanel> </ContentTemplate></telerik:RadWindow>