// this changes the background image of the header
.ui-jqgrid .ui-widget-header{
background-image: url(myBackground.jpg) repeat-x !important;
}
// this changes the background color of every row in a jqgrid
.ui-jqgrid tr.jqgrow {
background-color: yellow !important;
}
Примечание: !important
может не потребоваться.
Также убедитесь, что ваш файл CSS загружен после файла CSS jqgrid!
<link rel="stylesheet" type="text/css" media="screen" href="ui.jqgrid.css" />
<!-- load jqgrid css first then your css -->
<link rel="stylesheet" type="text/css" media="screen" href="mystyle.css" />