Struggling with applying styles to an asp:button? Despite reading multiple posts, I can't seem to make it work for my situation.
My css setup for href tags looks like this:
a.button { padding:6px;background:#4A6491;color:#FFF; border-radius: 10px 10px 10px 10px;margin:10px 2px;text-decoration:none;font-size:12px;text-transform:uppercase;font-weight:bold;border:2px solid transparent; }
a.button:hover { border:2px solid #fff; }
I have an asp:button already styled for login functionality. I want to apply the same style to it but can't seem to get it to work.
<asp:Button ID="LoginButton" runat="server" CommandName="Login" Text="Log In" ValidationGroup="LoginUserValidationGroup" />