Change the color of the selected page number in the gridview paging footer

asp.net, c#, gridview

Solution

see that pagination class assigned `CssClass="pagination"`

<PagerStyle CssClass="pagination" HorizontalAlign="Center" 
 VerticalAlign="Middle"/>
.pagination .current {
    background: #26B;
    color: #fff;
    border: solid 1px #AAE;
}

Problem

I have a gridview and sqldatasource. Gridview , Paging numbers. When you select the number page in the footer of the gridview it will underline the selected number . - Is there any way of changing the color of the selected number ? Thank you

Original source