Horizontal Layout
To set default Horizontal layout you can set body tag with
data-layout="horizontal"
, and in
layouts/menu.php
un-comment " include
'layouts/horizontal-menu.php'; " and comment other line.
How to use pre-built layouts?
For Horizontal layout, Each of the layout options
is provided below with
steps you would need to perform in the
layouts/body.php
file:
Topbar Dark
Keep your body element with data attributedata-topbar="dark"
data-layout="horizontal"
E.g.
<body data-topbar="dark"
data-layout="horizontal">
to have Dark
topbar and Light
Menubar.
Boxed Layout
Keep your body element with data attributedata-layout-size="boxed"
data-layout="horizontal"
E.g.
<body
data-layout-size="boxed"
data-layout="horizontal">
to have
boxed layout.
Scrollable Layout
Keep your body element with data attributedata-layout="horizontal"
data-layout-scrollable="true"
E.g.
<body
data-layout-scrollable="true"
data-layout="horizontal">
to
have Scrollable Layout.