I am using WebBlue Skin. I was able to override/add to them using my own CSS. But I have an issue not being able to add another CssClass to the .rgEditForm. I just want to right align them.
So far I have:
So far I have:
.RadGrid_WebBlue
.rgEditForm input
{
font:12px/12px "segoe ui",arial,sans-serif;
height:12px;
}
Which works perfect. When I added this it does not work:
<asp:TextBox ..... CssClass="RightAlign" />
.RightAlign .RadGrid_WebBlue .rgEditForm input
{
text-align:right;
}
Please help.
