Hi
For our site I use the Metro Skin, however for certain buttons I want to overwrite the Background color. I am able to do this except for when the button is pressed. I created a CSS class and used the PressedCssClass but it doesn't do anything. Here is my code
and the CSS class
thank you
For our site I use the Metro Skin, however for certain buttons I want to overwrite the Background color. I am able to do this except for when the button is pressed. I created a CSS class and used the PressedCssClass but it doesn't do anything. Here is my code
<td align="right" height="30"> <telerik:RadButton ID="RadButton3" runat="server" ButtonType="LinkButton" OnClick="orderupdate_Click" PressedCssClass="buttonpressed" HoveredCssClass="buttonpressed"> </telerik:RadButton> </td>and the CSS class
.buttonpressed { background-color: #000000 !important; }thank you