cssjqgridpager

How to change pager background color in JqGrid?


I tried this : Change styling of jqgrid

But it's not working as i'm not using bootstrap version of JqGrid.

I achieved to change the rownum color by doing this in HTML :

<style type="text/css">
    .jqgrow .jqgrid-rownum { background-color: transparent; background-image: none; }
</style>

But i'm not able to reproduce it for the pager.

I also have search in the file jquery-ui.css as I have changed many colors options to match what i want. But didn't find any option for the pager either.

Is there a solution ?


Solution

  • You can try this:

    $("#your_grid_pager_id").css("background", "red")