I am using jqGrid 3.5. Can I change the style and look of the grid and make it more beautiful using jQuery or custom CSS or something else?
You can remove all ui-grid classes:
$("[class^='ui-jqgrid']").removeAttr('class');
This may have performance issues if your grid size is big.