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

RadGrid FilterItem Text Color

3 Answers 136 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Ricardo
Top achievements
Rank 1
Ricardo asked on 02 Aug 2011, 09:38 AM
Hello!!

Can someone tell me how can i change the color of a RadGrid (Q2 2011)...I chose the skin "Black" for the Grid but now i need to change the color of the text field of the FilterItem.

3 Answers, 1 is accepted

Sort by
0
Accepted
Princy
Top achievements
Rank 2
answered on 02 Aug 2011, 09:45 AM
Hello Ricardo,

You can achieve this by overriding the default CSS as shown below.

CSS:
<style type="text/css">
.RadGrid_Black .rgFilterBox
{
    background-color:Red !important;
 }
</style>

Thanks,
Princy.
0
Ricardo
Top achievements
Rank 1
answered on 02 Aug 2011, 09:52 AM
Sorry i change in the aspx page, but I wnated to change the color of the input text field..It's possible?
0
Accepted
Princy
Top achievements
Rank 2
answered on 02 Aug 2011, 09:58 AM
Hello Ricardo,

Try setting the CSS as shown below.

CSS:
<style type="text/css">
.RadGrid_Black .rgFilterBox
{
    color:Red !important;
}
</style>

Thanks,
Princy.
Tags
Grid
Asked by
Ricardo
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Ricardo
Top achievements
Rank 1
Share this question
or