Horizontal Layouts
For Horizontal layout, Please include $this->include('partials/horizontal')
in the app/Views/partials/menu.php
Each of the layout options is provided below with
steps you would need to perform in the app/Views/partials/body.php
file:
Topbar Light
Keep your body element with data attributedata-topbar="light" data-layout="horizontal"
i.e. <body data-topbar="light" data-layout="horizontal">
to have light topbar and dark menubar.
Topbar Dark
Keep your body element with data attributedata-topbar="dark" data-layout="horizontal"
i.e. <body data-topbar="dark" data-layout="horizontal">
to have colored topbar and dark menubar.
Boxed Layout
Keep your body element with data attributedata-layout-size="boxed" data-layout="horizontal"
i.e. <body data-layout-size="boxed" data-layout="horizontal">
to have boxed layout.
Preloader
In order to add pre-loader in your page, include following html afterbody
element.
<div id="preloader">
<div id="status">
<div class="spinner-chase">
<div class="chase-dot"></div>
<div class="chase-dot"></div>
<div class="chase-dot"></div>
<div class="chase-dot"></div>
<div class="chase-dot"></div>
<div class="chase-dot"></div>
</div>
</div>
</div>