AdminLTE Bootstrap Theme Collapse Menu Not Appear -


need on bootstrap theme adminlte. on picture below, left side original theme, made modification using php include separate sidebar , header. got problem on collapse function.

problem appear on header (not collapse) , sidebar menu, missing. please advise how fix problem. thank you

enter image description here

my code:

<!doctype html> <html> <head>   <meta charset="utf-8">   <meta http-equiv="x-ua-compatible" content="ie=edge">   <title>adminlte 2 | dashboard</title>   <!-- tell browser responsive screen width -->   <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">  <?php include '../usersc/includes/load_css.php'?>   <!-- html5 shim , respond.js ie8 support of html5 elements , media queries -->   <!-- warning: respond.js doesn't work if view page via file:// -->   <!--[if lt ie 9]>   <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>   <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>   <![endif]-->    <!-- google font -->   <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=source+sans+pro:300,400,600,700,300italic,400italic,600italic"> </head> <body class="hold-transition skin-blue sidebar-mini"> <div class="wrapper">     <?php require_once $_server['document_root'] . '/docms/users/init.php';?>   <?php include '../usersc/includes/topbar.php'?>   <?php include '../usersc/includes/sidebar.php'?>    <!-- content wrapper. contains page content -->   <div class="content-wrapper">     <!-- content header (page header) -->     <section class="content-header">       <h1>         dashboard         <small>control panel</small>       </h1>       <ol class="breadcrumb">         <li><a href="#"><i class="fa fa-dashboard"></i> home</a></li>         <li class="active">dashboard</li>       </ol>     </section>      <!-- main content -->     <section class="content">       <!-- small boxes (stat box) -->       <div class="row">         <div class="col-lg-3 col-xs-6">           <!-- small box -->           <div class="small-box bg-aqua">             <div class="inner">               <h3>150</h3>                <p>new orders</p>             </div>             <div class="icon">               <i class="ion ion-bag"></i>             </div>             <a href="#" class="small-box-footer">more info <i class="fa fa-arrow-circle-right"></i></a>           </div>         </div>         <!-- ./col -->         <div class="col-lg-3 col-xs-6">           <!-- small box -->           <div class="small-box bg-green">             <div class="inner">               <h3>53<sup style="font-size: 20px">%</sup></h3>                <p>bounce rate</p>             </div>             <div class="icon">               <i class="ion ion-stats-bars"></i>             </div>             <a href="#" class="small-box-footer">more info <i class="fa fa-arrow-circle-right"></i></a>           </div>         </div>         <!-- ./col -->         <div class="col-lg-3 col-xs-6">           <!-- small box -->           <div class="small-box bg-yellow">             <div class="inner">               <h3>44</h3>                <p>user registrations</p>             </div>             <div class="icon">               <i class="ion ion-person-add"></i>             </div>             <a href="#" class="small-box-footer">more info <i class="fa fa-arrow-circle-right"></i></a>           </div>         </div>         <!-- ./col -->         <div class="col-lg-3 col-xs-6">           <!-- small box -->           <div class="small-box bg-red">             <div class="inner">               <h3>65</h3>                <p>unique visitors</p>             </div>             <div class="icon">               <i class="ion ion-pie-graph"></i>             </div>             <a href="#" class="small-box-footer">more info <i class="fa fa-arrow-circle-right"></i></a>           </div>         </div>         <!-- ./col -->       </div>       <!-- /.row -->       <!-- main row -->       <div class="row">         <!-- left col -->         <section class="col-lg-7 connectedsortable">         </section>         <!-- /.left col -->          <!-- right col (we adding id make widgets sortable)-->         <section class="col-lg-5 connectedsortable">         </section>         <!-- right col -->       </div>       <!-- /.row (main row) -->      </section>     <!-- /.content -->   </div>   <!-- /.content-wrapper -->    <footer class="main-footer">     <div class="pull-right hidden-xs">       <b>version</b> 2.4.0     </div>     <strong>copyright &copy; 2014-2016 <a href="https://adminlte.io">almsaeed studio</a>.</strong> rights     reserved.   </footer>     <?php include '../usersc/includes/control_sidebar.php'?> </div> <!-- ./wrapper -->  <?php include '../usersc/includes/load_js.php'?> </body> </html> 

stupid mistake, put wrong path on include


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -