Introduction

Author: Potenza Global Solutions

This documentation will give you an understanding of how Directro template is structured and guide you in performing common functions.

Notes:

  • We will not respond to any support questions on Item comment section or through e-mail. If this document doesn’t answer your questions feel free to open up a private ticket in our support forum
  • For questions on basic HTML, Javascript or CSS editing – please give your question a quick Google or visit W3Schools as template issues get top priority.
  • You will need some basic knowledge of HTML/CSS to edit the template.
  • For customization service contact us at our support forum

Installation

Follow the steps below to get started with your Site Template:

  1. Open the ... /template Folder to find all the Templates Files
  2. You will need to Upload these files to your Web Server using FTP (We suggest Filezilla) to use it on your Website.
  3. Make sure you upload the required files/folders listed below:
    • template/css – Stylesheets Folder
    • template/fonts – Fonts Folder
    • template/images – Images Folder
    • template/js – Java Scripts Folder
    • template/scss – All SCSS Files
    • template/index.html – Main home file
    • template/..... – All HTML files

    The other files can be used according to your preferences.

  4. You’re now good to go..! Start editing your site and show off your Brand New Website with proud.

Note: For correct operation of all functions of the template, including Popup video and Contact forms, you must upload the template to the web-server.

Basic template Structure

The template has a responsive layout and is based on the Bootstrap 5 Framework. Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile-first projects on the web. Click Here to know more about Bootstrap.

HTML Structure

Here is the general HTML structure of the template:

<!DOCTYPE html>
<html lang="en">
<head>
  [Page meta, page css, page title etc...]
</head>
<body>
<!--header -->
<header class="header">
  <nav class="navbar navbar-static-top navbar-expand-lg header-sticky">
    [MENU CONTENT]
  </nav>
</header>
<!--header -->
<!--Modal login -->
<div class="modal login fade" id="loginModal">
  [Modal CONTENT]
</div>
<!--Modal login -->
<!-- Banner -->
<section class="banner bg-holder bg-overlay-black-50" style="background-image: url(images/bg/01.jpg);">
  [BANNER CONTENT]
</section>
<!-- Banner -->
<!--Section 1 -->
<section class="py-4 border-bottom">
  [SECTION 1 CONTENT]
</section>
<!--Section 1 -->
<!--Section 2 -->
<section class="space-ptb">
  [SECTION 2 CONTENT]
</section>
<!--Section 2 -->
<!--footer -->
<footer class="footer border-top space-ptb">
  [FOOTER CONTENT]
</footer>
<!--footer -->
  [PAGE JAVASCRIPTS HERE]
</body>
</html>

CSS Structure

Here is the general CSS structure of the template:

<!-- CSS Global Compulsory (Do not remove)-->
<link rel="stylesheet" href="css/font-awesome/all.min.css" />
<link rel="stylesheet" href="css/flaticon/flaticon.css" />
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />

<!-- Page CSS Implementing Plugins (Remove the plugin CSS here if site does not use that feature)-->
<link rel="stylesheet" href="css/owl-carousel/owl.carousel.min.css" />
<link rel="stylesheet" href="css/magnific-popup/magnific-popup.css" />

<!-- Template Style -->
<link rel="stylesheet" href="css/style.css" />
  • all.min.css: This is a Font-awesome CSS.
  • flaticon.css: This is a Flaticon font icon CSS.
  • bootstrap.min.css: This is a Bootstrap 5 CSS file. You must need this file. Do not remove this.
  • owl.carousel.min.css: This is an owl carousel plugins CSS.
  • magnific-popup.css: This is a magnific popup plugins CSS.
  • style.css: This is a main stylesheet of the template, This file contains the styling for the actual Template.

 

Javascript Structure

Here is the general Javascript structure of the template:

<!-- JS Global Compulsory (Do not remove)-->
<script src="js/jquery-3.6.0.min.js"></script>
<script src="js/popper/popper.min.js"></script>
<script src="js/bootstrap/bootstrap.min.js"></script>

<!-- Page JS Implementing Plugins (Remove the plugin script here if site does not use that feature)-->
<script src="js/owl-carousel/owl-carousel.min.js"></script>
<script src="js/magnific-popup/jquery.magnific-popup.min.js"></script>

<!-- Template Scripts (Do not remove)-->
<script src="js/custom.js"></script>
  • jquery.js: This is a JavaScript library file. You must need this file to run any javascript. Do not change or edit this file.
  • popper.min.js: This is popper plugins file. Use to Tooltip. Do not change or edit this file.
  • bootstrap.min.js: This is a bootstrap plugins file. Use to Bootstrap Library JavaScript. Do not change or edit this file.
  • owl-carousel.min.js: This is owl-carousel plugins file. Use to Banner slider. Do not change or edit this file.
  • jquery.magnific-popup.min.js: This is a magnific-popup plugins file. Use to images popup and popup slider. Do not change or edit this file.
  • custom.js: This File includes all small scripts from the template. All script has commented code so you can easily remove unnecessary code from this file. Make sure you remove/add proper files before you remove or add anything in this file.

Compiling SCSS

Overview

SCSS is perhaps the most popular of the CSS pre-processors; for years it’s helped us write clean, reusable and modular CSS. In this quick tutorial, I’ll cut straight to the stuff that matters and explain how to compile Sass into CSS using the command line.

To compile Sass via the command line, first, we need to install node.js. Download it from the official website nodejs.org, open the package and follow the wizard.

Gulp is the task manager that is used to automate the task for easy development. Directro is divided into different parts for which different gulp task is created.

1. If you have not installed gulp globally then please it using the below command.

npm install gulp-cli -g

2. Now install all the dependencies required for the project go inside the folder where  /gulpfile.js  located and run below command.

npm install

This will install all the dependencies from the package manager.

3. Run the project using below command this will process all the scss files and js files and will auto start the browser.

gulp

Favicon icon

Favicon is an icon associated with the URL that is displayed at various places, such as in a browser’s address bar or next to the site name in a bookmark list. There are many online favicon icon generators to generate .ico file. You can also use .png file

You can add a Favicon to your Website using the following code:

<link rel="shortcut icon" href="images/favicon.ico" />

Logo Settings

The Logo can be found in the Header – .header. Replace "logo.svg" with your own logo image.

<div class="navbar navbar-static-top navbar-expand-lg header-sticky">
  <div class="container-fluid">
    <a class="navbar-brand" href="index.html">
      <img class="img-fluid" src="images/logo.svg" alt="logo">
    </a>
  </div>
</div>

How to change logo height?

You can set the height according to your logo type and your requirement.

CSS

To set logo height open css/style.css file and change height value in .navbar-brand img class, default value of logo height is 40px.
For responsive logo height open css/style.css file and change height value in .navbar-brand img class in the 991 media query, the default value of logo height in responsive is 34px.

SCSS

To set logo height open scss/header.scss file and change height value in .navbar-brand img class, default value of logo height is 40px.
For responsive logo height open scss/responsive.scss file and change height value in .navbar-brand img class in the 991 media query, the default value of logo height in responsive is 34px.

If you change logo height then header height will automatically increase and the menu will set vertically center.

Color Schemes

You can change your Website’s Color Scheme in an instant. There are 2 super easy options to change your website color.

1. CSS method: If you want to change the color go to (css/style.css) and Replace primary color HEX code with your color HEX code. Default color HEX code is #1c58c7

2. SCSS method: If you want to change the color go to (scss/variables.scss) and change color HEX codes as per your needs.

$body-color:	#999999; (ex: change color code #f5f5f5 )
$primary:			#1c58c7;
$white:				#ffffff;

Changing Fonts

You can add/change the site font, from all fonts used from Google Web Font Services, with the one that suits you the best. You can find the font code in the head a tag of all HTML files:

<!-- font -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;700;900&display=swap" >

To include a new font you can simply add another line like this:

<link href="https://fonts.googleapis.com/css?family=Roboto:400,400i,500,500i,700,700i" rel="stylesheet">

Or add an | separator and paste Roboto:400,300,800,700,600 after default website fonts link.

CSS

Now open css/style.css and change your font family with the current.

To change the fonts, you will need to edit the above links with your custom font, if you plan to use a Google Font or remove it completely. If you plan to use a self-hosted font, here is an example of using Self Hosted Fonts

SCSS

Now open scss/variables.scss and change your font family with the current.

To change the fonts, you will need to edit the above links with your custom font, if you plan to use a Google Font or remove it completely. If you plan to use a self-hosted font, here is an example of using Self Hosted Fonts

Map Listing

How to add property listing on the map?

To add your listing on the map, open file ..js/map/map-script.js file and add/edit your property details. You can find all the instructions in map-script.js file about Listing details, changing map center latitude longitude, zoom level etc.


How to place map on the page?

To place map on any page, you need to add below HTML structure.

<section class="listing-map">
  <div class="map-canvas">
  </div>
</section>

Make sure you add below scripts on the same page to make map work.

<!-- map -->
<script src="js/map/handlebars.min.js"></script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=false&key=AIzaSyCykRLEzpOdEoBqafqgeaJwgjxd3cT1bM8"></script>
<script src="js/map/snazzy-info-window.min.js"></script>
<script src="js/map/map-script.js"></script>

<script id="marker-content-template" type="text/x-handlebars-template">
	<div class="listing-item-map-img" style="background-image: url({{{bgImg}}})"></div>
	  <div class="listing-item-map">
	    <h6 class="listing-item-map-title">
	    <a href="{{link}}">{{title}}</a>
	    </h6>
	    <div class="listing-item-map-content">{{{body}}}</div>
	</div>
</script>

Sticky header

When you scroll down, the Sticky Header “sticks” to the top of the window.

To enable the sticky header, you need to add header-sticky class in nav tag of all html files. Please see below code example:

<nav class="navbar navbar-static-top navbar-expand-lg header-sticky">
</nav>

Page section padding

You can add this helper class to set section padding top 90px and padding bottom 90px.
Add space-ptb class in section tag. See example below:

<section class="... space-ptb">
  [YOUR CONTENT]
</section>

Note Use this helper class to maintain all page section spacing. You can also use space-pt for only padding top and space-pb for only padding bottom.

Text color

You can use color in the Text. simply add text-primary class where you want to apply green (theme color) color. See example below:

<div class="text-primary">
  [YOUR TEXT CONTENT]
</div>

Note We followed bootstrap helper class in our template. So you can use any bootstrap helper classes in our template as per your need. For text color, you can use bootstrap color helper classes

Background color

To use background color simply add bg-primary class where you want to apply green (theme bg color) color. See example below:

<div class="bg-primary">
  [YOUR TEXT CONTENT]
</div>

Note We followed bootstrap helper class in our template. So you can use any bootstrap helper classes in our template as per your need. For background color, you can use bootstrap Background color helper classes

Background Images

You can use an image in the background with parallax effect with simply add InlineStyle in any tag and by use of this you can create your own bg. See example below:

<div style="background-image:url(Path); ">
  [YOUR CONTENT]
</div>

If you want to use your background like cover or cointainer so, you just add styling property background-size and set the value cover or cointainer. see the example below:

<div style="background-image:url(Path); background-size:cover;">
  [YOUR CONTENT]
</div>

Background parallax

You can use an image in the background with parallax effect with simply add Inline Data See example below:

<section class="bg-holder" data-jarallax='{"speed": 0.6}' style="background-image:url(Path)">
</section>

Note You must need bg-holder class to set background parallax. With data-jarallax='{"speed": 0.6} you can set parallax speed.

Background overlay

You can add bg-overlay-black-10 class to any element in your HTML code to apply overlay color on any image or any section. See example below:

<div class="bg-overlay-black-10">
  [YOUR CONTENT]
</div>

Here are some predefined overlay classes you can use:

Class Description Class Description
bg-overlay-black-10 Apply black color overlay with 0.10 overlay bg-overlay-black-20 Apply black color overlay with 0.20 overlay
bg-overlay-black-30 Apply black color overlay with 0.30 overlay bg-overlay-black-40 Apply black color overlay with 0.40 overlay
bg-overlay-black-50 Apply black color overlay with 0.50 overlay bg-overlay-black-60 Apply black color overlay with 0.60 overlay
bg-overlay-black-70 Apply black color overlay with 0.70 overlay bg-overlay-black-80 Apply black color overlay with 0.80 overlay
bg-overlay-black-90 Apply black color overlay with 0.90 overlay
bg-overlay-white-10 Apply white color overlay with 0.10 overlay bg-overlay-white-20 Apply white color overlay with 0.20 overlay
bg-overlay-white-30 Apply white color overlay with 0.30 overlay bg-overlay-white-40 Apply white color overlay with 0.40 overlay
bg-overlay-white-50 Apply white color overlay with 0.50 overlay bg-overlay-white-60 Apply white color overlay with 0.60 overlay
bg-overlay-white-70 Apply white color overlay with 0.70 overlay bg-overlay-white-80 Apply white color overlay with 0.80 overlay
bg-overlay-white-90 Apply white color overlay with 0.90 overlay
bg-overlay-theme-20 Apply theme color overlay with 0.20 overlay bg-overlay-theme-50 Apply theme color overlay with 0.50 overlay
bg-overlay-theme-70 Apply theme color overlay with 0.70 overlay bg-overlay-theme-90 Apply theme color overlay with 0.90 overlay

Note You can create your own helper classes by creating the class in the stylesheet as per your requirement. This helper class only support RGBA color values.

Text align

You can add this helper class to any element in your HTML code to set text-align

Class Description
text-start text-align: left;
text-end text-align: right;
text-center text-align: center;

Label

You can add this helper class to any element in your HTML code to make a badge(lable). Simply add badge and bg-danger (or any class given below) class where you want to add a badge. See example below:

<span class="badge bg-danger">badge name</span>

Here are some default badges you can use or you can make your own badge as per your requirement.

Class Description
badge bg-primary primary badge
badge bg-secondary secondary badge
badge bg-success Success badge
badge bg-danger danger badge
badge bg-warning Warning badge
badge bg-info info badge
badge bg-light light badge
badge bg-dark dark badge

Accordion

Use the below code to display accordion:

Accordion 01
<div class="accordion" id="accordion">
  <div class="card">
    <div class="accordion-icon card-header" id="headingOne">
      <h6 class="mb-0">
      <button class="btn" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
      <span>01</span> Choose what to do
      </button>
      </h6>
    </div>
    <div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-bs-parent="#accordion">
      <div class="card-body">
        <p>[ Description ]</p>
      </div>
    </div>
  </div>
  <div class="card">
    <div class="accordion-icon card-header" id="headingTwo">
      <h6 class="mb-0">
      <button class="btn collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
      <span>02</span> Find what you want
      </button>
      </h6>
    </div>
    <div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-bs-parent="#accordion">
      <div class="card-body">
        <p>[ Description ]</p>
      </div>
    </div>
  </div>
  <div class="card">
    <div class="accordion-icon card-header" id="headingthree">
      <h6 class="mb-0">
      <button class="btn collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapsethree" aria-expanded="false" aria-controls="collapsethree">
      <span>03</span> Amazing places
      </button>
      </h6>
    </div>
    <div id="collapsethree" class="collapse" aria-labelledby="headingthree" data-bs-parent="#accordion">
      <div class="card-body">
        <p>[ Description ].</p>
      </div>
    </div>
  </div>
</div>
Accordion 02
<div class="accordion-style-2" id="accordion-02">
  <div class="card">
    <div class="card-header" id="headingfour">
      <h5 class="accordion-title mb-0">
      <button class="btn btn-link d-flex ms-auto align-items-center" data-bs-toggle="collapse" data-bs-target="#collapsefour" aria-expanded="true" aria-controls="collapsefour">Do How does it work? <i class="fas fa-chevron-down fa-xs"></i></button> </h5>
    </div>
    <div id="collapsefour" class="collapse show accordion-content" aria-labelledby="headingfour" data-bs-parent="#accordion-02">
      <div class="card-body">
        <p class="mb-0">[ Description ]</p>
      </div>
    </div>
  </div>
  <div class="card">
    <div class="card-header" id="headingfive">
      <h5 class="accordion-title mb-0">
      <button class="btn btn-link d-flex ms-auto align-items-center collapsed" data-bs-toggle="collapse" data-bs-target="#collapsefive" aria-expanded="false" aria-controls="collapsefive">
      What if I’m not available at the requested time?  <i class="fas fa-chevron-down fa-xs"></i> </button>
      </h5>
    </div>
    <div id="collapsefive" class="collapse accordion-content" aria-labelledby="headingfive" data-bs-parent="#accordion-02">
      <div class="card-body">
        <p class="mb-0">[ Description ]</p>
      </div>
    </div>
  </div>
</div>

Counter

Use the below code to display Counter:

Counter 01
<div class="row">
	<div class="col-sm-6 col-lg-3">
	  <div class="counter">
	    <div class="counter-icon">
	      <i class="flaticon-medal fa-3x text-primary"></i>
	    </div>
	    <div class="counter-content">
	      <span class="timer text-dark" data-to="1790" data-speed="10000">1790</span>
	      <label class="text-dark">Happy Clients</label>
	    </div>
	  </div>
	</div>
	<div class="col-sm-6 col-lg-3">
	  <div class="counter">
	    <div class="counter-icon">
	      <i class="flaticon-medal fa-3x text-primary"></i>
	    </div>
	    <div class="counter-content align-self-center">
	      <span class="timer text-dark" data-to="245" data-speed="10000">245</span>
	      <label class="text-dark">Skilled Experts</label>
	    </div>
	  </div>
	</div>
	<div class="col-sm-6 col-lg-3">
	  <div class="counter">
	    <div class="counter-icon">
	      <i class="flaticon-medal fa-3x text-primary"></i>
	    </div>
	    <div class="counter-content">
	      <span class="timer text-dark" data-to="491" data-speed="10000">491</span>
	      <label class="text-dark">Finished Projects</label>
	    </div>
	  </div>
	</div>
	<div class="col-sm-6 col-lg-3">
	  <div class="counter">
	    <div class="counter-icon">
	      <i class="flaticon-medal fa-3x text-primary"></i>
	    </div>
	    <div class="counter-content">
	      <span class="timer text-dark" data-to="1090" data-speed="10000">1090</span>
	      <label class="text-dark">Media Posts</label>
	    </div>
	  </div>
	</div>
</div>

Countdown

You can add Countdown Timer to any Page. You can prefer to use Countdown Timer for “Coming Soon Page” or “Product Countdown Page”. Use below code to display countdown Timer:

<div class="countdown-wrapper pt-4 mb-4">
  <div class="countdown">
    <span class="text-white days">00</span>
    <p class="text-white days_ref">days</p>
  </div>
  <div class="countdown">
    <span class="text-white hours">00</span>
    <p class="text-white hours_ref">hours</p>
  </div>
  <div class="countdown">
    <span class="text-white minutes">00</span>
    <p class="text-white minutes_ref">minutes</p>
  </div>
  <div class="countdown">
    <span class="text-white seconds">00</span>
    <p class="text-white seconds_ref">seconds</p>
  </div>
</div>

Also, update date in custom.js file as per your requirement:

  POTENZA.countdownTimer = function () {
  if ($countdownTimer.exists()) {
    $countdownTimer.downCount({
      date: '12/25/2022 12:00:00', // Month/Date/Year HH:MM:SS
      offset: -4
    });
  }
}

Note date: '12/25/2022 12:00:00' is default date and time, you can change it as per your requirement

Testimonials

Use the below code to display testimonials:

Testimonial 01
<div class="testimonial">
  <div class="testimonial-item bg-primary">
    <div class="testimonial-quote"><i class="fas fa-quote-right"></i></div>
    <p class="testimonial-content">[ YOUR CONTENT ]</p>
    <div class="testimonial-author">
      <div class="testimonial-author-img">
        <img class="img-fluid" src="images/listing-brand/01.png" alt="">
      </div>
      <span class="d-inline-block ms-3 text-white"> Mellissa Doe</span>
    </div>
  </div>
</div>
Testimonial 02
<div class="testimonial testimonial-light">
  <div class="testimonial-item">
    <div class="testimonial-quote"><i class="fas fa-quote-right"></i></div>
    <p class="testimonial-content">[ YOUR CONTENT ]</p>
    <div class="testimonial-author">
      <div class="testimonial-author-img">
        <img class="img-fluid" src="images/listing-brand/01.png" alt="">
      </div>
      <span class="d-inline-block ms-3 text-dark"> Mellissa Doe</span>
    </div>
  </div>
</div>
Testimonial 03
<div class="testimonial-02">
  <div class="testimonial-content">
    <p><i class="fas fa-quote-right quotes"></i>[ YOUR CONTENT ]</p>
  </div>
  <div class="testimonial-author">
    <div class="testimonial-avatar avatar avatar-lg me-3">
      <img class="img-fluid rounded-circle" src="images/avatar/01.jpg" alt="">
    </div>
    <div class="testimonial-name">
      <h6 class="text-primary mb-1">Michael Bean</h6>
      <span>Hamilton Rd. Willoughby</span>
    </div>
  </div>
</div>

Tabs

Use the below code to display Tabs :

 <ul class="nav nav-tabs nav-tabs-02" id="myTab" role="tablist">
  <li class="nav-item">
    <a class="nav-link active" id="tab-01-tab" data-bs-toggle="tab" href="#tab-01" role="tab" aria-controls="tab-01" aria-selected="true">Tab 01</a>
  </li>
  <li class="nav-item">
    <a class="nav-link" id="tab-02-tab" data-bs-toggle="tab" href="#tab-02" role="tab" aria-controls="tab-02" aria-selected="false">Tab 02</a>
  </li>
  <li class="nav-item">
    <a class="nav-link" id="tab-03-tab" data-bs-toggle="tab" href="#tab-03" role="tab" aria-controls="tab-03" aria-selected="false">Tab 03</a>
  </li>
</ul>
<div class="tab-content" id="myTabContent">
  <div class="tab-pane fade active show" id="tab-01" role="tabpanel" aria-labelledby="tab-01-tab">
    <p class="mt-4">[ Tab content ]</p>
  </div>
  <div class="tab-pane fade" id="tab-02" role="tabpanel" aria-labelledby="tab-02-tab">
    <p class="mt-4">[ Tab content ]</p>
  </div>
  <div class="tab-pane fade" id="tab-03" role="tabpanel" aria-labelledby="tab-03-tab">
    <p class="mt-4">[ Tab content ]</p>
  </div>
</div>

Note Make sure you use unique IDs for each Tab Items and Tab content.

Category

Use the below code to display Category:

Category 01
<div class="owl-carousel" data-nav-dots="false" data-nav-arrow="false" data-items="6" data-md-items="5" data-sm-items="3" data-xs-items="2" data-xx-items="1" data-space="20" data-autoheight="false">
  <div class="item">
    <a class="category-item bg-holder bg-overlay-black-50 text-center" style="background-image: url(images/location/01.jpg);" href="#">
      <span class="mb-0 text-white position-relative">Restaurant</span>
    </a>
  </div>
  <div class="item">
    <a class="category-item bg-holder bg-overlay-black-50 text-center" style="background-image: url(images/location/02.jpg);" href="#">
      <span class="mb-0 text-white position-relative">Night life</span>
    </a>
  </div>
  <div class="item">
    <a class="category-item bg-holder bg-overlay-black-50 text-center" style="background-image: url(images/location/03.jpg);" href="#">
      <span class="mb-0 text-white position-relative">Hotels</span>
    </a>
  </div>
  <div class="item">
    <a class="category-item bg-holder bg-overlay-black-50 text-center" style="background-image: url(images/location/04.jpg);" href="#">
      <span class="mb-0 text-white position-relative">Cafe</span>
    </a>
  </div>
  <div class="item">
    <a class="category-item bg-holder bg-overlay-black-50 text-center" style="background-image: url(images/location/05.jpg);" href="#">
      <span class="mb-0 text-white position-relative">Club & Bars</span>
    </a>
  </div>
  <div class="item">
    <a class="category-item bg-holder bg-overlay-black-50 text-center" style="background-image: url(images/location/06.jpg);" href="#">
      <span class="mb-0 text-white position-relative">Museum</span>
    </a>
  </div>
</div>
Category 02
<div class="row">
  <div class="col-12">
    <div class="category">
      <ul class="list-unstyled mb-0">
        <li class="category-item-02">
          <a href="#">
            <div class="category-icon">
              <img class="img-fluid" src="images/category/01.jpg" alt="">
            </div>
            <h6 class="mb-0">Restaurant</h6>
            <span>(22)</span>
          </a>
        </li>
        <li class="category-item-02">
          <a href="#">
            <div class="category-icon">
              <img class="img-fluid" src="images/category/02.jpg" alt="">
            </div>
            <h6 class="mb-0">Night life </h6>
            <span>(16)</span>
          </a>
        </li>
        <li class="category-item-02">
          <a href="#">
            <div class="category-icon">
              <img class="img-fluid" src="images/category/03.jpg" alt="">
            </div>
            <h6 class="mb-0">Arts &amp; Entertainment</h6>
            <span>(08)</span>
          </a>
        </li>
        <li class="category-item-02">
          <a href="#">
            <div class="category-icon">
              <img class="img-fluid" src="images/category/04.jpg" alt="">
            </div>
            <h6 class="mb-0">Hotel</h6>
            <span>(14)</span>
          </a>
        </li>
        <li class="category-item-02">
          <a href="#">
            <div class="category-icon">
              <img class="img-fluid" src="images/category/05.jpg" alt="">
            </div>
            <h6 class="mb-0">Club &amp; Bars</h6>
            <span>(23)</span>
          </a>
        </li>
        <li class="category-item-02">
          <a href="#">
            <div class="category-icon">
              <img class="img-fluid" src="images/category/06.jpg" alt="">
            </div>
            <h6 class="mb-0">Museum</h6>
            <span>(10)</span>
          </a>
        </li>
        <li class="category-item-02">
          <a href="#">
            <div class="category-icon">
              <img class="img-fluid" src="images/category/07.jpg" alt="">
            </div>
            <h6 class="mb-0">Gym &amp; Fiteness</h6>
            <span>(05)</span>
          </a>
        </li>
        <li class="category-item-02">
          <a href="#">
            <div class="category-icon">
              <img class="img-fluid" src="images/category/08.jpg" alt="">
            </div>
            <h6 class="mb-0">Beauty &amp; Spa</h6>
            <span>(10)</span>
          </a>
        </li>
        <li class="category-item-02">
          <a href="#">
            <div class="category-icon">
              <img class="img-fluid" src="images/category/09.jpg" alt="">
            </div>
            <h6 class="mb-0">Shopping Mall</h6>
            <span>(15)</span>
          </a>
        </li>
      </ul>
    </div>
  </div>
</div>
Category 03
<div class="row">
  <div class="owl-carousel mb-5 mb-lg-0" data-nav-dots="false" data-nav-arrow="false" data-items="4" data-md-items="3" data-sm-items="3" data-xs-items="2" data-xx-items="1" data-space="10" data-autoheight="false">
  <a href="#" class="category-item-03">
    <i class="flaticon-food-serving"></i>
    <span class="mb-0 category-title">Restaurant</span>
  </a>
  <a href="#" class="category-item-03 active">
    <i class="flaticon-travel"></i>
    <span class="mb-0 category-title">Travel</span>
  </a>
  <a href="#" class="category-item-03">
    <i class="flaticon-hotel"></i>
    <span class="mb-0 category-title">Hotel</span>
  </a>
  <a href="#" class="category-item-03">
    <i class="flaticon-lithotherapy"></i>
    <span class="mb-0 category-title">Beauty & Spa</span>
  </a>
  <a href="#" class="category-item-03">
    <i class="flaticon-breakdown"></i>
    <span class="mb-0 category-title">Cars</span>
  </a>
  <a href="#" class="category-item-03">
    <i class="flaticon-guitar"></i>
    <span class="mb-0 category-title">Night life</span>
  </a>
</div>

Browser Support

Directro supports all major browsers like Google Chrome, Mozilla Firefox, Safari, Opera, Microsoft Edge.

How to rate this item

If you like our theme and support, Please do not forget to rate it with 5 stars in your Downloads section and write a review in Comments as it will add more value to our services!

Kindly visit here: http://themeforest.net/downloads and find “Rate this item” below the download button and rate out the theme.

Advance Thanks in Anticipation!

Source & Credits

All images and videos are for preview purposes only and are not included in the download files. Images are of copyrights under Creative Commons CC0.

Images

 

JavaScripts

 

CSS & Fonts

Suggest Edit