I have a jqGrid and it has a default color: blue. However I want to change it’s color. What can I do?
EDIT: I have that includes for jqgrid CSS:
<link rel="stylesheet" href="/css/ui.jqgrid.css"/>
<link rel="stylesheet" href="/css/ui.multiselect.css"/>
<link rel="stylesheet" href="/css/jquery-ui-1.8.1.custom.css"/>
At present you are using custom classes jQueryUI. The file in question is
jquery-ui-1.8.1.custom.css.
I will recommend or use a template already defined that your choice here: http://jqueryui.com/themeroller/ in the Gallery section.
Once you’ve chosen a theme, for example, “Cupertino” change this line of code:
with:
however, if you want a custom version from a theme already defined; click on edit and you are shown a screen where you yourself can change the colors of all elements of jQueryUI and once finished editing, you download the custom theme and I include it in your project.
I hope I was clear!