Gridview pager mouseover.

reder

Member
Joined
Oct 2, 2008
Messages
8
Programming Experience
3-5
Hi,

How can I implement a font colour change on mouseover on the page numbers in 2.0 gridview? I can do this for rows and cells but cant see how to add the behaviour for the numbers.

Any help would be great.
 
You should be able to do something like this in your style sheet

VB.NET:
.PagerRowStyle a:hover
{
    color: Black;
}
 
Back
Top