I have a css class that sets the style display:block on all buttons inside a div so that the buttons stack on top of each other instead of side by side. When I also have the RadFormDecorator styling buttons, both the unstyled input button and the styled button appear.
<div class="VerticalButtonList"> |
<asp:Button ID="btnSave" runat="server" Text="Save" OnClick="btnSave_Click" Width="60px" /> |
<asp:Button ID="btnCancel" runat="server" Text="Cancel" OnClick="btnCancel_Click" Width="60px" /> |
<asp:Button ID="btnDelete" runat="server" Text="Delete" OnClick="btnDelete_Click" Width="60px" /> |
</div> |
.VerticalButtonList input[type=submit] |
{ |
display:block; |
} |