I am using codeigniter html template which have its own bootstrap files but when i m using twitter bootstrap 3 phpgrid theme it is overwrite with the template bootstrap css files, what should i do?
Currently, following css are loaded in our demos/appearance/twitter-bootstrap3.php demo
<link rel="stylesheet" type="text/css" media="screen" href="../../lib/js/themes/<?php echo $themes[$i] ?>/jquery-ui.custom.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<!– bootstrap3 + jqgrid compatibility css –>
<link rel="stylesheet" type="text/css" media="screen" href="../../lib/js/jqgrid/css/ui.jqgrid.bs.css">
If you already have bootstrap.min.css included in template, you can skip the second and include only:
<link rel="stylesheet" type="text/css" media="screen" href="../../lib/js/themes/<?php echo $themes[$i] ?>/jquery-ui.custom.css">
<link rel="stylesheet" type="text/css" media="screen" href="../../lib/js/jqgrid/css/ui.jqgrid.bs.css">
Make sure you include 'ui.jqgrid.bs.css' after including 'bootstrap.min.css'
Let me know for further help. Screenshot + code would help. You can also email me at [email protected]