This is a migrated thread and some comments may be shown as answers.

CSS for specific content page

1 Answer 46 Views
Ajax
This is a migrated thread and some comments may be shown as answers.
Chris @ Intrinsic
Top achievements
Rank 1
Chris @ Intrinsic asked on 30 Oct 2011, 10:31 PM
Is there an easy way to add styles for a specific content page only (in a master  / content page scenario in which I'm using Telerik Controls?

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 31 Oct 2011, 05:39 AM
Hello Chris,

One suggestion is to create a CSS class which overrides the default control style. Then you can apply it to the Control on the content page.
Sample code:
aspx:
<telerik:RadTextBox ID="textBox"  CssClass="RadInputBorder" runat="server"></telerik:RadTextBox>
CSS:
.RadInputBorder
{
 border-color:Red !important;
}

Thanks,
Princy.
Tags
Ajax
Asked by
Chris @ Intrinsic
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or