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

Grid header and pager style

1 Answer 61 Views
Grid
This is a migrated thread and some comments may be shown as answers.
L
Top achievements
Rank 1
L asked on 21 Jan 2011, 04:19 AM
hi

I am able to change the skin color of the header but not the pager. What am i doing wrong? Thanks

<style type="text/css">
    .RadGrid_Office2007 th.rgHeader
    {
        background-image: none;
        background-color: #f3610b;
    }
     .RadGrid_Office2007 rgPager
    {
        background-image: none;
        background-color: #f3610b;
    }
</style>

1 Answer, 1 is accepted

Sort by
0
Accepted
Princy
Top achievements
Rank 2
answered on 21 Jan 2011, 05:45 AM
Hello,

Try the following CSS to change the background color of pager.
CSS:
<style type="text/css">
       .RadGrid_Office2007 th.rgHeader
       {
           background-image: none;
           background-color: #f3610b;
       }
      
       .RadGrid_Office2007 .rgPager td
       {
           background-image: none ;
           background-color: #f3610b ;
       }
   </style>

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