Hello,
I can't change forecolor of checkbox label.
I tried to set ForeColor of checkbox, I tried to overwrite color in checkbox inline style, I tried overwrite .radCheckboxChecked.
May be I'm overwriting wrong class. Please help.
Skin for my checkboxes is "Sitefinity" which was defined in RadFormDecorator.
ASPX
Robin
I can't change forecolor of checkbox label.
I tried to set ForeColor of checkbox, I tried to overwrite color in checkbox inline style, I tried overwrite .radCheckboxChecked.
May be I'm overwriting wrong class. Please help.
Skin for my checkboxes is "Sitefinity" which was defined in RadFormDecorator.
ASPX
<telerik:RadFormDecorator ID="RFDCheckBoxes" runat="server" DecoratedControls ="CheckBoxes"Skin="Sitefinity" EnableRoundedCorners="false" />
<asp:CheckBox ID="chkSelect" runat="server" AutoPostBack="false" Text="Select" ForeColor="White"/>
<asp:CheckBox ID="chkSelect2" runat="server" AutoPostBack="false" style="color:white!important;"Text="Select 2"/>
CSS
.RadForm_Sitefinity.radfdCheckboxChecked {color: white!important;}
.RadForm_Sitefinity.radfdCheckboxUnchecked {color: white !important;}
Thanks in advanced.Robin