I am using the following mark up for a toolbar at the top of my screen but their is a diabled css class that i can add and an active to make them stand out my question is how do i in code behind add a style to the button cssclass tag.
<
telerik:RadButton
ID
=
"rbPersonalDetails"
runat
=
"server"
CssClass
=
"btn btn-info"
Text
=
"Property Details"
>
<
ContentTemplate
>
<
i
class
=
"fa fa-user"
style
=
"color: #5bc0de;"
></
i
>Personal Details
</
ContentTemplate
>
</
telerik:RadButton
>
<
telerik:RadButton
ID
=
"rbPropertyDetails"
runat
=
"server"
CssClass
=
"btn btn-info"
Text
=
"Property Details"
>
<
ContentTemplate
>
<
i
class
=
"fa fa-home"
style
=
"color: #5bc0de;"
></
i
>Property Details
</
ContentTemplate
>
</
telerik:RadButton
>
<
telerik:RadButton
ID
=
"rbVechicleDetails"
runat
=
"server"
CssClass
=
"btn btn-info"
Text
=
"Vechicle Details"
>
<
ContentTemplate
>
<
i
class
=
"fa fa-car"
style
=
"color: #5bc0de;"
></
i
>Vechicle Details
</
ContentTemplate
>
</
telerik:RadButton
>
<
telerik:RadButton
ID
=
"rbincomee"
runat
=
"server"
CssClass
=
"btn btn-info"
>
<
ContentTemplate
>
<
i
class
=
"fa fa-gbp"
style
=
"color: #5bc0de;"
></
i
>Income & Expenditures
</
ContentTemplate
>
</
telerik:RadButton
>
<
telerik:RadButton
ID
=
"rbPensions"
runat
=
"server"
CssClass
=
"btn btn-info"
>
<
ContentTemplate
>
<
i
class
=
"fa fa-bank"
style
=
"color: #5bc0de;"
></
i
>Pensions
</
ContentTemplate
>
</
telerik:RadButton
>
<
telerik:RadButton
ID
=
"rbMeetings"
runat
=
"server"
CssClass
=
"btn btn-info"
>
<
ContentTemplate
>
<
i
class
=
"fa fa-calendar"
style
=
"color: #5bc0de;"
></
i
>Meetings
</
ContentTemplate
>
</
telerik:RadButton
>
<
telerik:RadButton
ID
=
"rbOtherAssets"
runat
=
"server"
CssClass
=
"btn btn-info"
>
<
ContentTemplate
>
<
i
class
=
"fa fa-share"
style
=
"color: #5bc0de;"
></
i
>Other Assets
</
ContentTemplate
>
</
telerik:RadButton
>