Paging Control Color

Grid 3.5.


resultLstGridObj.enablePaging(true,15,5,“pagingControl”,true, “pagingState”);

This will display the default paging format like: <1, 2, 3, 4,… 7

My question is: Can I somehow change the color of the page number. For example, I want to make the number in blue color, i.e., <1, 2, 3, 4,… 7

You may try to use the css.
For example:

<style> div.pagingBlock a{ color:blue; } </style>