Options
Homer admin theme gives you few configure options for your application layout. Each of the layout element: navigation, navbar, small header and footer can be fixed positioning.
Use below buttons to enable/disable available options.
- Sidebar scroll
- Fixed navbar
- Fixed footer
- Fixed small header
- Off
- Boxed layout
- Off
Fixed small header is a top page header that is sticked on screen (only small version).
To add fixed small header you need to add .fixed-small-header class to body. Fixed sidebar works with fixed-navbar and fiexd sidebar.
<body class="fixed-small-header sidebar-scroll fixed-navbar">
Boxed layout is an option for fixed width and centered layout on desktop resolution.
To add boxed layout you need to add .boxed class to body element and special additional div wrapper after body tag with .boxed-wrapper class.
<body class="boxed"> <div class="boxed-wrapper"> …. …. </div> </body>