Description
Light color horizontal navigation with custom light color options. In this page you can experience it. If you want to create a light color horizontal navigation use the following customization options.
This page has light horizontal navbar & examples below, You can also check horizontal layout templates light navigation example to experience it live. horizontal-nav-light.html
Classic white
- Dashboard
- Mega Menu
-
Column 2 title
-
Column 3 title
-
Column 4 title
- My Menu
- Menu levels
- Mega Menu
-
Column 2 title
-
Column 3 title
-
Column 4 title
-
- Menu levels
- Menu levels
Custom light colors
Light amber
- Dashboard
- Mega Menu
-
Column 2 title
-
Column 3 title
-
Column 4 title
- My Menu
- Menu levels
- Mega Menu
-
Column 2 title
-
Column 3 title
-
Column 4 title
-
- Menu levels
- Menu levels
Teal without shadow
- Dashboard
- Mega Menu
-
Column 2 title
-
Column 3 title
-
Column 4 title
- My Menu
- Menu levels
- Mega Menu
-
Column 2 title
-
Column 3 title
-
Column 4 title
-
- Menu levels
- Menu levels
Light red
- Dashboard
- Mega Menu
-
Column 2 title
-
Column 3 title
-
Column 4 title
- My Menu
- Menu levels
- Mega Menu
-
Column 2 title
-
Column 3 title
-
Column 4 title
-
- Menu levels
- Menu levels
This table contains all classes which can be used in light horizontal navigation. You can combine them as per horizontal navigation light template requirements.
All these options can be set via following classes:
Classes | Description |
---|---|
.navbar-light |
To set horizontal navigation light color you need to add .navbar-light
class in horizontal navigation <div> tag. Refer HTML markup line
no 13. |
.bg-[color] |
To set the light horizontal navigation background color use |
.bg-lighten-[*] |
To set the selected background color lighten use
|
.border-[color] |
To set the light horizontal navigation border color use |
.border-lighten-[color] |
To set the selected border color lighten use
|
This section contains HTML Markup to create light horizontal navigation. This markup define where to add css classes to make horizontal navigation light.
- Line no 13: Contain the
.navbar-light
class for adjusting horizontal navigation color light. It has also.bg-teal
&bg-lighten-5
to set lighten background color andborder-teal
&border-lighten-4
to set lighten border.
<!DOCTYPE html>
<html lang="en">
<head></head>
<body data-menu="vertical-menu" class="vertical-layout vertical-menu 2-column menu-expanded">
<!-- START Navbar-->
<nav role="navigation" class="header-navbar navbar-expand-sm navbar navbar-with-menu fixed-bottom navbar-dark navbar-shadow navbar-border">
...
</nav>
<!-- END Navbar-->
<!-- START Horizontal navigation -->
<div role="navigation" data-menu="menu-wrapper" class="header-navbar navbar-expand-sm navbar navbar-horizontal navbar-light navbar-shadow border-grey border-lighten-2">
...
</div>
<!-- END Horizontal navigation-->
<!-- BEGIN Content-->
<div class="content app-content">
<div class="content-wrapper">
<!-- content header-->
<div class="content-header row">
...
</div>
<!-- content header-->
<!-- content right-->
<div class="content-right">
...
</div>
<!-- content right-->
</div>
</div>
<!-- END Content-->
<!-- START FOOTER DARK-->
<footer class="footer footer-dark">
...
</footer>
<!-- START FOOTER DARK-->
</body>
</html>