Navbar and Side Menu
Bezel includes two styles for the top and side menus: light and dark. If you want to use the dark version, you just need to add the class .dark-menu
to #navbar
or #aside-nav
div.
Sliders
To setup an image slider, you just need to create a .images-gallery
div and pass the options in the data-slick
attribute, like this:
<div class="images-gallery" data-slick='{"dots": false, "arrows": true}'>
<img src="images/portfolio-single-1.jpg" alt="">
<img src="images/portfolio-single-2.jpg" alt="">
<img src="images/portfolio-single-3.jpg" alt="">
</div>
Carousels
To setup a carousel, you just need to create a .carousel
div and pass the options in the data-slicl
attribute, like this:
<div class="carousel" data-slick="{"slidesToShow": 6, "dots": false}">
<div class="carousel-item"><img src="images/clients-1.png" alt=""></div>
...
</div>
Both carousels and slider are based on Slick library. You can view all options available for the data-slick attribute here
Maps
You can add a map by simply adding a #map div and pass two options: latitude and longitude. Like this:
<div id="map" data-lat="40.773328" data-lang="-73.960088" class="full-width"></div>
You can use the .full-width
class if you want a full width map. If you want to place it inside a split section be sure to wrap the map div inside the .img-side
To enable the map, you need to obtain a Google Maps API key from this link (you will see the button "Get a Key").
You can find your latitude and longitude here.
At the bottom of the HTML file, there's this line:
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&key=YOUR_API_KEY"></script>
Replace YOUR_API_KEY
with your actual API key.
Anchor Links
If you want to use an anchor link to scroll smoothly to an element of the page, you just need to set the data-scroll
attribute to true. Like this:
<a href="#demos" data-scroll="true" class="btn btn-light-out">Select a demo</a>