I have created a telerik RadGrid in asp .net. My requirement is to give my own color to Column header. How can we achieve this...? Below is the code structure I\'m using.
<
I had the same issue and even after overriding the class, the header color did not change.
.RadGrid_Default .rgHeader { background-color: rgb(236, 89, 91); }
I found that my overridden background was re-overridden by Grid. I used !important keyword not to allow Grid to re-override my class
.RadGrid_Default .rgHeader { background-color: rgb(236, 89, 91) !important; }
Same you can do for any class!