Eventoz Documentation

Getting Started

Welcome

Thanks for purchasing our template :)

It is our great pleasure that you purchased our template. And we want to tell you that you don't need to write any codes for this template. Just follow some instructions for customizing the template.

If you have any questions, feel free to contact us at mailto:labartisan@labartisan.com.

Features

  • Home Pages
  • Total 15+ HTML Files
  • Fully responsive
  • Clear & Neat design
  • Bootstrap Based
  • Font Awesome Icon
  • Icofont Icon
  • Nice portfolio and Blog
  • Smooth animation
  • Browser compatibility (IE10+, Chrome, Safari, Firefox, Opera)
  • Well documented

Folder Arrange

Unzip the archive and find out the folder "buyer-file". There are all the template files in this folder. You can open the following files for your customization.

  1. assets/css — folder with CSS files.
  2. assets/fonts — folder with icon fonts.
  3. assets/images — folder with image files.
  4. assets/js — folder with JAVASCRIPT files.
  5. assets/sass — folder with SASS/SCSS files.

  6. index.html — Home Page.
  7. about.html — About us Page.
  8. blog.html — Blog Page.
  9. blog-single.html — Blog Single Page.
  10. gallery.html — Photo Gallery Page.

  11. and Some other HTML Files
  12. .

Installation

01. FTP Upload

  • Open Your FTP manager and connect to your hosting
  • Browse to required directory(Normally public_html)
  • Upload the files inside buyer-file folder
  • That's all !

02. All HTML Pages

  • index.html for Home Page
  • about.html for About Us
  • speakers.html for event speakers
  • speaker-details.html for Speaker Single Page
  • pricing-plan.html for Ticket Page
  • shop.html for Shop Page
  • shop-single.html for Shop Single Page
  • cart.html for Cart pages
  • gallery.html for Gallery Page
  • blog.html for Blog Page
  • blog-single.html for Blog Details Page
  • login.html for Sign In Page
  • registration.html for Sign Up Page
  • contact.html for Contact Us
  • coming-soon.html for Coming Soon Page
  • error-page.html for Error Page

03. Fonts

Go to Google Fonts and select your favorite fonts and then just replace the code or you can use any custom fonts like bellow.

      <!--Custom Fonts-->
      
    @font-face {
      font-family: 'Circular Std';
      src: local('Circular Std Black'), local('CircularStd-Black'),
          url('../custom-fonts/CircularStd-Black.woff2') format('woff2');
      font-weight: 900;
      font-style: normal;
      font-display: swap;
    }

      
    

05. Source File (CSS)

All required css files have been linked like below-

            <link rel="stylesheet" href="assets/css/bootstrap.min.css">
            <link rel="stylesheet" href="assets/css/all.min.css">
            <link rel="stylesheet" href="assets/css/icofont.min.css">
            <link rel="stylesheet" href="assets/css/lightcase.css">
            <link rel="stylesheet" href="assets/css/swiper.min.css">
            <link rel="stylesheet" href="assets/css/style.css">
    

06. Source File (JS)

All required css files have been linked like below. if you need any customization in JAVASCRIPT you have to edit the function.js file.

              <script src="assets/js/jquery.js"></script>
              <script src="assets/js/fontawesome.min.js"></script>
              <script src="assets/js/waypoints.min.js"></script>
              <script src="assets/js/bootstrap.bundle.min.js"></script>
              <script src="assets/js/swiper.min.js"></script>
              <script src="assets/js/circularProgressBar.min.js"></script>
              <script src="assets/js/isotope.pkgd.min.js"></script>
              <script src="assets/js/lightcase.js"></script>
              <script src="assets/js/functions.js"></script>
    

This is logo and navigation codes.

          <ul class="menu">
              <li>
                  <a href="index.html">Home</a>
              </li>

              <li>
                  <a href="#0">Features</a>
                  <ul class="submenu">
                      <li><a href="gallery.html">Gallery</a></li>
                      <li><a href="login.html">Log In</a></li>
                      <li><a href="registration.html">Sign Up</a></li>
                      <li><a href="pricing-plan.html">Pricing Plan</a></li>
                      <li><a href="shop.html">Shop</a></li>
                      <li><a href="shop-single.html">Shop Single</a></li>
                      <li><a href="cart.html">Cart Page</a></li>
                      <li><a href="404.html">404 Page</a></li>
                      <li><a href="coming-soon.html">Coming-soon</a></li>

                  </ul>
              </li>
              <li>
                  <a href="#0">Speakers</a>
                  <ul class="submenu">
                      <li><a href="speakers.html">All Speakers</a></li>
                      <li><a href="speaker-details.html">Speaker Details</a></li>
                  </ul>
              </li>
              <li>
                  <a href="#0">Blog</a>
                  <ul class="submenu">
                      <li><a href="blog.html">Blog</a></li>
                      <li><a href="blog-single.html">Blog Single</a></li>
                  </ul>
              </li>
              <li><a href="contact.html">Contact</a></li>
          </ul>
    

Here is your main logo code. To add your logo, replace logo.png from images/logo/ directory with your logo in PNG format.

    <div class="logo">
        <a href="index.html">
            <img src="assets/images/logo/logo.png" alt="logo">
        </a>
    </div>
            
Note: Keep your logo inside the ./assets/images/logo folder. The logo size should be maximum 153x5 pixel.

To change the menu name you will need to edit in the tag <li><a href="#">menu name </a> </li> and add your text in the middle of the tag.



Section Styles

Here is your section structure.

<section class="xyz-section padding-tb">
    <div class="container">
        <div class="section-header">
          ....
        </div>
        <div class="section-wrapper">
            <div class="row">
              ....
            </div>
        </div>
    </div>
</section>
    

In the class="xyz-section" you can replace with your desired class.

the class padding-tb is the space between each sections.

And in the section-header div you can add your heading of sections and tagline of sections.

You can add your content on the 2nd .section-wrapper div.


Utility Classes

You can use next modification classes to set block margins and paddings:


margin-top

mt-1 ... mt-5

margin-bottom

mb-1 ... mb-5

padding-top

pt-1 ... pt-5

padding-bottom

pb-1 ... pb-5



You Can Change Your Copyright text by changing footer sections copyright part like below-

  <div class="footer-bottom">
      <div class="container">
          <div class="row">
              <div class="col-12">
                  <div class="footer-bottom-content text-center">
                      <p>&copy;2021 <a href="index.html">Eventoz</a> -Best For Event HTML Template.</p>
                  </div>
              </div>
          </div>
      </div>
  </div>
    

Support

If you face any kinds of problems with our template or you have any questions, please feel free to contact us at mailto:labartisan@labartisan.com.


Browse Our others Template on Themeforest- LabArtisanLabArtisan