Documentation forInnov - HTML Temaplate
Thank you for purchasing this template. If you have any questions that are beyond the scope of this help file, please feel free to email via my user page contact from here (https://themeforest.net/user/template_mr ).
Title Changing
Logo Changing
SASS/SCSS File Architecture
sass/
└─ base/
├── _base.scss
└─ components/
├── _component.scss
├───── _btn.scss
├───── _breadcrumb.scss
├───── _dropdown.scss
├───── _form.scss
├───── _hamburger-menu.scss
├───── _nav.scss
├───── _nav-tabs.scss
├───── _owl-dots.scss
├───── _owl-nav.scss
├───── _pagination.scss
├───── _play_button.scss
├───── _social-link.scss
└─ core/
├─── _core.scss
├───── _banner.scss
├───── _business.scss
├───── _contact.scss
├───── _count.scss
├───── _cretive.scss
├───── _manager.scss
├───── _portfolio.scss
├───── _process.scss
├───── _pata.scss
├───── _service.scss
├───── _skill.scss
├───── _testimonial.scss
├───── _video.scss
└─ layout/
├── _header.scss
├── _sidebar.scss
├── _sidebar.scss
├── _footer.scss
└─ pages/
├── _pages.scss
├───── about-page.scss
├───── single-page.scss
├───── _404.scss
├───── _cases.scss
├───── _contact_page.scss
├───── _portfolio_page.scss
├───── _portfolio_single_page.scss
├───── _pricing_page.scss
├───── _service_page.scss
├───── _service_page_2.scss
├───── _blog.scss
└─ utilities/
├── _utilities.scss
├───── _variables.scss
├───── _mixins.scss
├───── _border.scss
├───── _border-radius.scss
├───── _color.scss
├───── _display.scss
├───── _flex.scss
├───── _font.scss
├───── _line-height.scss
├───── _margin.scss
├───── _padding.scss
├───── _opacity.scss
├───── _overlay.scss
├───── _position.scss
├───── _sizing.scss
├───── _shadow.scss
├───── _text.scss
├───── _z-index.scss
└─ vendors/
├── _vendors.scss
├───── _bootstrap.scss
├───── _mmenu-light.scss
└─ _editor.scss
└ style.scss
Header Area
Banner section
Service Section
Business Section
Skill Section
Manager Section
Pta Section
Video Section
Testimonial Section
Count Section
Contact Section
Footer Section
CSS Files & Structure
CSS Files
Changing Font
Slick News uses Font family: 'Roboto', sans-serif as a default font from the Google Fonts Library. To change the Font, you will need to Edit the Bottom Link with your Custom Font link in style.css file and change the body css font-family
If you plan to use a Self Hosted font. Here is an Example for using Self Hosted Font.
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300&family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;1,600&display=swap");
body {
font-family: 'Roboto', sans-serif
}
h1,
h2,
h3,
h4,
h5,
h6{
font-family: Work Sans', sans-serif
}
CSS coding standard:
We followed css and css3 coding standard. Here is the example:
/* Sections
========================================================================== */
/**
* Remove the margin in all browsers.
*/
body {
font-family: "Roboto", sans-serif;
font-weight: 400;
font-size: 16px;
line-height: 1.5;
color: #303030;
margin: 0;
text-align: left;
}
/**
* Render the `main` element consistently in IE.
*/
main {
display: block;
}
/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Work Sans", sans-serif;
color: #303030;
line-height: 1.2;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
color: inherit;
}
h4 {
font-size: 18px;
}
h5 {
font-size: 16px;
}
/* Grouping content
========================================================================== */
/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
background: #303030;
width: 50px;
height: 5px;
margin: 50px 0;
padding: 0;
border: none;
border-radius: 0;
}
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
pre {
font-family: monospace, monospace;
/* 1 */
font-size: 1em;
/* 2 */
}
/* Text-level semantics
========================================================================== */
/**
* Remove the gray background on active links in IE 10.
*/
a {
background-color: inherit;
text-decoration: none;
transition: 0.3s ease-out;
}
ul {
margin: 0px;
padding: 0px;
}
li {
list-style: none;
}
p {
margin: 0;
}
/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
border-bottom: none;
/* 1 */
text-decoration: underline;
/* 2 */
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
/* 2 */
}
/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
font-weight: bolder;
}
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp {
font-size: 1rem;
}
/**
* Add the correct font size in all browsers.
*/
small {
font-size: 80%;
}
/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
/* Embedded content
========================================================================== */
/**
* Remove the border on images inside links in IE 10.
*/
img {
border-style: none;
max-width: 100%;
}
Javascript File Structure
Custom JS coding standard:
(function ($) {
"use strict";
/*=============================================
= Menu sticky & Scroll to top =
=============================================*/
$(window).on('scroll', function () {
var scroll = $(window).scrollTop();
if (scroll < 245) {
$(".header-area").removeClass("scroll-header");
} else {
$(".header-area").addClass("scroll-header");
}
});
// scrollToTop
$(window).scroll(function () {
if ($(this).scrollTop() > 100) {
$('.scrollToTop').fadeIn();
} else {
$('.scrollToTop').fadeOut();
}
});
//Click event to scroll to top
$('.scrollToTop').click(function () {
$('html, body').animate({
scrollTop: 0
}, 800);
return false;
});
// offcanvas menu
$(".menu-tigger").on("click", function () {
$(".extra-info,.offcanvas-overly").addClass("active");
return false;
});
$(".menu-close,.offcanvas-overly").on("click", function () {
$(".extra-info,.offcanvas-overly").removeClass("active");
});
$('select').niceSelect();
// Preloader
setTimeout(function () {
$('.loader-bg').fadeToggle();
}, 10000);
// OwlCarousel
var className = document.querySelectorAll('.carousel');
className.forEach(function (className) {
var responsive = $(className).data('responsive');
var dots = $(className).data('dots');
var dotsclass = $(className).data('dotsclass');
var dotclass = $(className).data('dotclass');
var nav = $(className).data('nav');
var autoplay = $(className).data('autoplay');
var navcontainerclass = $(className).data('navcontainerclass');
$(className).owlCarousel({
loop: true,
margin: 30,
dots: dots,
autoplay: autoplay,
dotsClass: dotsclass,
dotClass: dotclass,
nav: nav,
navContainerClass: navcontainerclass,
URLhashListener: true,
navText: ['', ''],
responsive: responsive
});
});
// Skill bar
$('#bar1').barfiller({ duration: 3000 });
$('#bar2').barfiller({ duration: 3000 });
$('#bar3').barfiller({ duration: 3000 });
// portfolio
$('.container').imagesLoaded( function() {
var $grid = $('.grid').isotope({
itemSelector: '.grid-item'
});
// filter items on button click
$('.portfolio-button').on( 'click', 'button', function() {
var filterValue = $(this).attr('data-filter');
$grid.isotope({ filter: filterValue });
});
});
// change is-checked class on buttons
$('.portfolio-button').each( function( i, buttonGroup ) {
var $buttonGroup = $( buttonGroup );
$buttonGroup.on( 'click', 'button', function() {
$buttonGroup.find('.is-active').removeClass('is-active');
$( this ).addClass('is-active');
});
});
//Magnific Popup
$('.video-popup').magnificPopup({
type: 'iframe',
iframe: {
patterns: {
youtube: {
index: 'youtube.com/',
id: 'v=',
src: 'https://www.youtube.com/embed/%id%?autoplay=1'
}
},
srcAction: 'iframe_src',
}
});
// counter
$('.counter').counterUp({
delay: 20,
time: 1000
});
})(jQuery);
Sources & Credits
I've used the following images, icons or other files as listed.
Once again, thank you so much for purchasing this template. As I said at the beginning, I'd be glad to help you if you have any questions relating to this theme feel free to email via my user page contact from here.