Hi...In my proyect I use a bootstrap template and now I want use grocery crud bootstrap theme, but I have a conflict with both things, first some things in grocery crud not working fine then I remove the template and just leave the grocery crud and work very well. So I don´t know what do because I need use both things.
This is my html code
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Meta, title, CSS, favicons, etc. -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?php echo $titulo; ?> </title>
<?php
if ( isset ($css_files) )
foreach($css_files as $file): ?>
<link type="text/css" rel="stylesheet" href="<?php echo $file; ?>" />
<?php endforeach; ?>
<?php
if ( isset ($js_files) )
foreach($js_files as $file): ?>
<script src="<?php echo $file; ?>"></script>
<?php endforeach; ?>
<!-- Bootstrap core CSS -->
<link href="<?php echo base_url() . 'assets/new_template/css/bootstrap.min.css'; ?>" rel="stylesheet">
<link href="<?php echo base_url() . 'assets/new_template/fonts/css/font-awesome.min.css'; ?>" rel="stylesheet">
<link href="<?php echo base_url() . 'assets/new_template/css/animate.min.css'; ?>" rel="stylesheet">
<!-- Custom styling plus plugins -->
<link href="<?php echo base_url() . 'assets/new_template/css/custom.css'; ?>" rel="stylesheet">
<link href="<?php echo base_url() . 'assets/new_template/css/maps/jquery-jvectormap-2.0.3.css'; ?>" rel="stylesheet" type="text/css" />
<link href="<?php echo base_url() . 'assets/new_template/css/icheck/flat/green.css'; ?>" rel="stylesheet" />
<link href="<?php echo base_url() . 'assets/new_template/css/floatexamples.css'; ?>" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="<?php echo base_url() . 'assets/new_template/js/jquery.min.js'; ?>"></script>
<script type="text/javascript" src="<?php echo base_url() . 'assets/new_template/js/jquery-1.9.1.min.js'; ?>"></script>
<script type="text/javascript" src="<?php echo base_url() . 'assets/new_template/js/nprogress.js'; ?>"></script>
</head>
Any help please ??
