Oleos

Thank you for purchasing our theme. If you have any questions that are beyond the scope of this help file, please feel free to ask via item's comments. Also please don't forget to give item ratings! Thanks so much! :)

General

HTML Structure
This template using Bootstrap framework. Each page is separated by section <section>...</section>.
... header area ...

<div id="content">
    <section id="section-main">
	content here...
    </section>

    <section id="section-about">
        content here...
    </section>

    <section id="section-services">
        content here...
    </section>
</div>

... footer area ...
        

Note: You can rename or delete all sections except 'section-main' because it used for the main function.

Create Columns

For a simple two column layout, create a .row and add the appropriate number of .col-md-* columns. As this is a 12-column grid, each .col-md-* spans a number of those 12 columns, and should always add up to 12 for each row (or the number of columns in the parent).

Please read more for Bootstrap grid system here: https://getbootstrap.com/docs/4.5/layout/grid/

<div class="row">
<div class="col-md-6"> this is 1/2 columns </div>
<div class="col-md-6"> this is 1/2 columns </div>
</div> <div class="row">
<div class="col-md-4"> this is 1/3 columns </div>
<div class="col-md-8"> this is 2/3 columns </div>
</div> <div class="row">
<div class="col-md-3"> this is 1/4 columns </div>
<div class="col-md-9"> this is 3/4 columns </div>
</div>
Change scheme color

For each template page, look at line 30 below

<link id="colors" href="css/colors/scheme-01.css" rel="stylesheet" type="text/css">

Then replace scheme-01.css with another value. You can choose one of below: scheme-01.css, scheme-02.css, scheme-03.css, scheme-04.css.

All premade color on this template can be found inside folder css/colors/.

Animate object

Select an object that you want to animate. As example you want create animate for H1 element. You can see below:

<h1 class="wow fadeIn" data-wow-delay=".2s" data-wow-duration=".5s">Animate Text</h1>
  • You must add class name "wow" for object that you want to animate.
  • fadeIn: sample type of animation. You can see all animation available from: http://daneden.github.io/animate.css/
  • data-wow-delay: determine when animation will start (on second)
  • data-wow-duration: determine duration of animation (on second)
Change Countdown Date

Open any page that has a countdown. Look code at the bottom of the page source code:


<!-- Countdown
            ================================================== -->
            <script>
                jQuery(document).ready(function() {
                        $(function () {
                            $('#defaultCountdown').countdown({until: new Date(2021, 2-1, 10, 8)}); // year, month (value-1), date, hour
                        });
                });  
            </script>	

				

Change value 'Date(2021, 2-1, 10, 8)' with new date (year, month (value-1), date, hour).

Custom background color for div/section

To make custom background color without touching css file, you can use code data-bgcolor="#hex-color" within your div/section tag. See sample below:

<section data-bgcolor="#333333">
my section content...
</section>
Custom background image for div/section

To make custom background image without touching css file, you can use code data-bgimage="url(your-image-url)" within your div/section tag. See sample below:

<section data-bgimage="url(images/background/bg-1.jpg)">
my section content...
</section>
Create parallax background

First create custom background for your section/div, you can use code data-bgimage="url(your-image-url)" within your div/section tag. See sample below:

<section data-bgimage="url(images/background/bg-1.jpg)">
my section content...
</section>

Add attribute data-stellar-background-ratio for images speed.

<section data-bgimage="url(images/background/bg-1.jpg)" data-stellar-background-ratio=".2"> my section content... </section>
Change contact form email address
Open > email.php. Change $to value with your email.

jQuery and CSS Files

List of javascipt files
  • jquery.min.js - http://docs.jquery.com/Downloading_jQuery
  • bootstrap.min.js - bootstrap js file
  • designesia.js - custom js file
  • jquery.isotope.min.js - used in gallery page
  • jquery.magnific-popup.min.js - used to open popup image
  • easing.js - http://archive.plugins.jquery.com/project/Easing
  • jquery.ui.totop.js - used to scroll to top
  • validation.js - used for contact form validation
List of CSS files
  • animate.css - used to make animation
  • bg.css - used to set background for all section and subheader
  • bootstrap.css - main css framework for this theme
  • color.css - used to load color for template
  • magnific-popup.css - for maginfic popup jquery
  • owl.carousel.css, owl.theme.css, owl.transitions.css - for owl carousel jquery
  • plugin.css - overwrite default plugin css
  • rev-settings.css - custom css for Revolution Slider
  • style.css - main css file for this template