Documentation
Your ThemeForest Item Name Here
Thank you so much for purchasing our item from themeforest.
- Version: 1.0
- Author: Harnish Design
- Created: 8 April, 2020
- Update: 12 May, 2020
If you have any questions that are beyond the scope of this help file, Please feel free to email via Item Support Page.
Installation
Follow the steps below to setup your site template:
- Unzip the downloaded package and open the /HTML folder to find all the template files. You will need to upload these files to your hosting web server using FTP or localhost in order to use it on your website.
- Below is the folder structure and needs to be uploaded to your website or localhost root directory:
HTML/assets
- Contains all of the assets referencedHTML/css
- Stylesheet filesHTML/images
- Images filesHTML/js
- Javacript filesHTML/sass
- Sass filesHTML/vendor
– All external libs.
HTML/index.html
- Homepage
- You should upload all or specific HTML files as per your need.
- You are good to go for adding your content now!
HTML Structure
iDocs follows a simple and easy to customize coding structure. Here is the sample for your reference:
The template is based on Bootstrap Framework
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Your Title, Description, Stylesheets
============================================= -->
</head>
<body data-spy="scroll" data-target=".idocs-navigation" data-offset="125">
<!-- Document Wrapper
=============================== -->
<div id="main-wrapper">
<!-- Header
============================ -->
<header id="header" class="sticky-top">
......
</header>
<!-- Header End -->
<!-- Content
============================ -->
<div id="content" role="main">
<!-- Sidebar Navigation
============================ -->
<div class="idocs-navigation bg-light">
.....
</div>
<!-- Docs Content
============================ -->
<div class="idocs-content">
<div class="container">
.......
</div>
</div>
</div>
<!-- Content end -->
<!-- Footer -->
<footer id="footer" class="section bg-dark footer-text-light">
<div class="container"> ...... </div>
</footer>
<!-- Footer end -->
</div>
<!-- Document Wrapper end -->
<!-- JavaScript -->
</body>
</html>
If you need more information, please visit bootstrap site: https://getbootstrap.com
Sass
We have added SASS .scss
files in template. If you know how to use SASS you can change sass files and compile the css as well.
You can find sass file here - HTML/assets/sass
Open the sass/_variables.scss
and Edit the values according to your needs. If you need more Advanced Setup then you can Edit the Respective Files yourself which have been branched inside the same Folder. It is completely at your discretion only to include the Required .scss
Files you need to minimize the amount of CSS & including only the Styles of the Blocks you need. This can be setup in your stylesheet.scss
File.
Color Schemes
You can change your Website's Color Scheme in an instant. We have build 10 Color css file for change template primary color.
color-blue.css
- Blue Colorcolor-brown.css
- Brown Colorcolor-cyan.css
- Cyan Colorcolor-green.css
- Green Colorcolor-orange.css
- Orange Colorcolor-indigo.css
- Indigo Colorcolor-purple.css
- Purple Colorcolor-red.css
- Red Colorcolor-teal.css
- Teal Colorcolor-yellow.css
- Yellow Color
Simply add Color CSS file link it in the Document <head>
.
Make sure you add the css/color-blue.css
stylesheet in your head after the css/stylesheet.css
file linking from above mentioned 10 color css file.
For Example:
<head>
<!-- Stylesheet
============================== -->
<!-- Bootstrap -->
<link rel="stylesheet" type="text/css" href="assets/vendor/bootstrap/css/bootstrap.min.css" />
<!-- Font Awesome Icon -->
<link rel="stylesheet" type="text/css" href="assets/vendor/font-awesome/css/all.min.css" />
<!-- Magnific Popup -->
<link rel="stylesheet" type="text/css" href="assets/vendor/magnific-popup/magnific-popup.min.css" />
<!-- Highlight Syntax -->
<link rel="stylesheet" type="text/css" href="assets/vendor/highlight.js/styles/github.css" />
<!-- Custom Stylesheet -->
<link rel="stylesheet" type="text/css" href="assets/css/stylesheet.css" />
<!-- Here goes your Colors Css -->
<link rel="stylesheet" type="text/css" href="assets/css/color-orange.css" />
</head>
Theme Customization
We have include a Custom CSS File in the css
Folder so that you can better handle your Customizations for New Styles or
Overwriting Default Theme Styles. Simply add all your Custom CSS Codes in the css/custom.css
File and link it in the Document <head>
after the css/stylesheet.css
Linking. Also make sure that this is the Last Linked CSS File in the Document <head>
so that your Custom CSS Styles are Overwritten properly.
<head>
<!-- Stylesheet
============================== -->
<!-- Bootstrap -->
<link rel="stylesheet" type="text/css" href="assets/vendor/bootstrap/css/bootstrap.min.css" />
<!-- Font Awesome Icon -->
<link rel="stylesheet" type="text/css" href="assets/vendor/font-awesome/css/all.min.css" />
<!-- Magnific Popup -->
<link rel="stylesheet" type="text/css" href="assets/vendor/magnific-popup/magnific-popup.min.css" />
<!-- Highlight Syntax -->
<link rel="stylesheet" type="text/css" href="assets/vendor/highlight.js/styles/github.css" />
<!-- Custom Stylesheet -->
<link rel="stylesheet" type="text/css" href="assets/css/stylesheet.css" />
<!-- Here goes your custom.css
============================================= -->
<link rel="stylesheet" type="text/css" href="assets/css/custom.css" />
</head>
Logo Settings
The Logo Container can be found in the Header Container - <header>
<!-- Logo -->
<a class="logo ml-3 ml-md-0" href="index.html" title="iDocs">
<img src="images/logo-light.png" alt="iDocs"/>
</a>
<!-- Logo End -->
Layout
Documentation and examples for header, navbar, sidebar, footer
Header
The list of various header types & its descriptions are provided below for your reference:
Light
Header with white background Color & Dark text. See below image and code for more information.
<!-- Header
============================ -->
<header id="header" class="sticky-top">
<!-- Navbar -->
<nav class="primary-menu navbar navbar-expand-lg">
<div class="container-fluid">
.....
</div>
</nav>
<!-- Navbar End -->
</header>
<!-- Header End -->
Dark
Header with dark background & Light text. See below image and code for more information.
Add the .bg-dark
and .navbar-text-light
Class to the <nav>
Tag to display a Dark Header.
<!-- Header
============================ -->
<header id="header" class="sticky-top">
<!-- Navbar -->
<nav class="primary-menu navbar navbar-expand-lg bg-dark navbar-text-light">
<div class="container-fluid">
.....
</div>
</nav>
<!-- Navbar End -->
</header>
<!-- Header End -->
Box Layout Style
Default Layout Style is wide. Please add the .box
class to the <body>
Tag for box layout.
<body class="box" data-spy="scroll" data-target=".idocs-navigation" data-offset="125">
Content
Documentation and examples for displaying typography, code, table, image and video and more..
Typography
Documentation and examples for typography, headings, body text, lists, and more.
Headings
Heading | Example |
---|---|
<h1></h1> |
h1. Heading |
<h2></h2> |
h2. Heading |
<h3></h3> |
h3. Heading |
<h4></h4> |
h4. Heading |
<h5></h5> |
h5. Heading |
<h6></h6> |
h6. Heading |
Lead
Make a paragraph stand out by adding .lead
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid.
<p class="lead">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid.
</p>
Inline Text elements
You can use the mark tag to highlight text.
This line of text is meant to be treated as deleted text.
This line of text is meant to be treated as no longer accurate.
This line of text is meant to be treated as an addition to the document.
This line of text will render as underlined
This line of text is meant to be treated as fine print.
This line rendered as bold text.
This line rendered as italicized text.
<p>You can use the mark tag to <mark>highlight</mark> text.</p>
<p><del>This line of text is meant to be treated as deleted text.</del></p>
<p><s>This line of text is meant to be treated as no longer accurate.</s></p>
<p><ins>This line of text is meant to be treated as an addition to the document.</ins></p>
<p><u>This line of text will render as underlined</u></p>
<p><small>This line of text is meant to be treated as fine print.</small></p>
<p><strong>This line rendered as bold text.</strong></p>
<p><em>This line rendered as italicized text.</em></p>
Code
Documentation and examples for displaying inline and multiline blocks of code
Inline code
Wrap inline snippets of code with <code>
. Be sure to escape HTML angle brackets.
For example, <section>
should be wrapped as inline.
For example, <code><section></code> should be wrapped as inline.
Code blocks
Use <pre>
s for multiple lines of code. Once again, be sure to escape any angle brackets in the code for proper rendering. You may optionally add the .pre-scrollable
class, which will set a max-height of 340px and provide a y-axis scrollbar.
For example:
<p>Sample text here...</p>
<p>And another line of sample text here...</p>
Have to use something like:
<pre><code><p>Sample text here...</p>
<p>And another line of sample text here...</p>
</pre></code>
Syntax highlighter
We use Highlight Js for syntax highlight code snippet.
You can refer more information here: How to use highlight.js
Table
Documentation and examples for opt-in styling of tables.
iDocs is based on Bootstrap 4, so you can easily use Bootstrap's table classes to style your table. Bootstrap Documentation
Bordered
<table class="table table-bordered">
.......
</table>
# | First | Last | Handle |
---|---|---|---|
1 | Mark | Otto | @mdo |
2 | Jacob | Thornton | @fat |
3 | Larry | the Bird |
Striped
<table class="table table-bordered table-striped">
.......
</table>
# | First | Last | Handle |
---|---|---|---|
1 | Mark | Otto | @mdo |
2 | Jacob | Thornton | @fat |
3 | Larry | the Bird |
NoteYou can refer more information in Bootstrap Documentation here: Bootstrap Documentation
Icons
Font Awesome icon sets are used in iDocs.
<i class="fas fa-mobile-alt"></i>
<i class="fab fa-twitter"></i>
<i class="fas fa-credit-card"></i>
<i class="fab fa-facebook-f"></i>
NotePlease go to their official documentation pages for a full list of icons: Font Awesome
Image
Documentation and examples for opting images into responsive behavior and add lightweight styles to them—all via classes.
Responsive Images
Images in Bootstrap are made responsive with .img-fluid.
max-width: 100%;
and height: auto;
are applied to the image so that it scales with the parent element.
<img src="assets/images/screenshot.jpg" class="img-fluid" alt="Responsive image">
Image lightbox
Show image popup when click on image:
<a class="popup-img" href="assets/images/screenshot.jpg">
<img src="assets/images/screenshot-thumb.jpg" class="img-fluid img-thumbnail" alt="image">
</a>
Image Lightbox with Link
Show image popup when click on link: Click Here for Popup Image
<a class="popup-img" href="assets/images/screenshot.jpg">Click Here for Popup Image</a>
Image lightbox with Button
Show image popup when click on button: Click Here for Popup Image
<a class="btn btn-primary popup-img" href="assets/images/screenshot.jpg">Click Here for Popup Image</a>
Video
Create responsive video embeds based on the width of the parent by creating an intrinsic ratio that scales on any device.
Embedded Video
Wrap any embed like an <iframe>
in a parent element with .embed-responsive
and an aspect ratio. The .embed-responsive-item
isn’t strictly required, but we encourage it.
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/7e90gBu4pas" allowfullscreen></iframe>
</div>
NotePlease go to official bootstrap documentation for a full information of embed video: Bootstrap Documentation
Popup with Video
Show Youtube and Vimeo video popup when click on link:
<a class="popup-youtube" href="http://www.youtube.com/watch?v=7e90gBu4pas">Open Popup YouTube Video </a>
<a class="popup-vimeo" href="https://vimeo.com/45830194">Open Popup Vimeo video</a>
Components
Setting up components is very easy. Here is the Some of shortcodes describe. also, iDocs is based on Bootstrap 4, so you can easily use Bootstrap's components: Bootstrap Documentation
Accordion
You can extend the default collapse behavior to create an accordion. To properly achieve the accordion style, be sure to use .accordion
as a wrapper.
See below image and code for more information.
<div class="accordion" id="accordionDefault">
<div class="card">
<div class="card-header" id="headingOne">
<h5 class="mb-0"> <a href="#" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">Accordion Title</a> </h5>
</div>
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordionDefault">
<div class="card-body">This is Accordion Content</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo">
<h5 class="mb-0"> <a href="#" class="collapsed" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">Accordion Title</a> </h5>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordionDefault">
<div class="card-body">This is Accordion Content</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0"> <a href="#" class="collapsed" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">Accordion Title</a> </h5>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordionDefault">
<div class="card-body">This is Accordion Content</div>
</div>
</div>
</div>
Options:
Type Class | Features | Code Example |
---|---|---|
.accordion-alternate |
Alternate Minimal Style for the accordions. |
|
.arrow-right |
For set arrow in right side in accordions |
|
Tabs
Default Bootstrap Nav component combined with iDocs for unique tabs.
See below image and code for more information.
<ul class="nav nav-tabs" id="myTab" role="tablist">
<li class="nav-item" role="presentation">
<a class="nav-link active" id="home-tab" data-toggle="tab" href="#home" role="tab" aria-controls="home" aria-selected="true">Home</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link" id="profile-tab" data-toggle="tab" href="#profile" role="tab" aria-controls="profile" aria-selected="false">Profile</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link" id="contact-tab" data-toggle="tab" href="#contact" role="tab" aria-controls="contact" aria-selected="false">Contact</a>
</li>
</ul>
<div class="tab-content my-3" id="myTabContent">
<div class="tab-pane fade show active" id="home" role="tabpanel" aria-labelledby="home-tab">This is Tab Content Home</div>
<div class="tab-pane fade" id="profile" role="tabpanel" aria-labelledby="profile-tab">This is Tab Content Profile</div>
<div class="tab-pane fade" id="contact" role="tabpanel" aria-labelledby="contact-tab">This is Tab Content Contact</div>
</div>
Options:
Type Class | Features | Code Example |
---|---|---|
Basic Navs |
Basic Navs Style for the Tabs |
|
.nav-separator |
Basic Navs Style with Separator for the Tabs |
|
.nav-tabs |
Tabs Navs Style for the Tabs. For example - above Preview Example. |
|
.nav-pills |
Pills Navs Style for the Tabs |
|
Helper Classes
We have created some really useful helper classes for you. Here are a few of them. also, You can refer other default bootstrap helper classes here: Bootstrap Documentation
Text Size:
.text-0
- Changes the Font size to 11px..text-1
- Changes the Font size to 12px..text-2
- Changes the Font size to 14px..text-3
- Changes the Font size to 16px..text-4
- Changes the Font size to 18px..text-5
- Changes the Font size to 21px..text-6
- Changes the Font size to 24px..text-7
- Changes the Font size to 28px..text-8
- Changes the Font size to 32px..text-9
- Changes the Font size to 36px..text-10
- Changes the Font size to 40px..text-11
- Changes the Font size to 44px..text-12
- Changes the Font size to 48px..text-13
- Changes the Font size to 52px..text-14
- Changes the Font size to 56px..text-15
- Changes the Font size to 60px..text-16
- Changes the Font size to 64px..text-17
- Changes the Font size to 72px..text-18
- Changes the Font size to 80px..text-19
- Changes the Font size to 84px..text-20
- Changes the Font size to 92px.
Font Weight:
.font-weight-100
- For font weight of 100..font-weight-200
- For font weight of 200..font-weight-300
- For font weight of 300..font-weight-400
- For font weight of 400..font-weight-500
- For font weight of 500..font-weight-600
- For font weight of 600..font-weight-700
- For font weight of 700..font-weight-800
- For font weight of 800..font-weight-900
- For font weight of 900.
Background Color:
.bg-transparent
- For background color of transparent.bg-light
- For background color of light gray.bg-light-1
- For background color of more light gray.bg-light-2
- For background color of more light gray.bg-light-3
- For background color of more light gray.bg-light-4
- For background color of more light gray.bg-dark
- For background color of dark.bg-dark-1
- For background color of dark gray.bg-dark-2
- For background color of more dark gray.bg-dark-3
- For background color of more dark gray.bg-dark-4
- For background color of more dark gray
Box Shadow
.shadow-none
- For No shadow to elements with box-shadow utilities..shadow-sm
- For Small shadow to elements with box-shadow utilities..shadow
- For Regular shadow to elements with box-shadow utilities..shadow-md
- For medium light shadows to elements with box-shadow utilities..shadow-lg
- For Larger shadows to elements with box-shadow utilities.
Opacity
.opacity-1
- For 10% opacity..opacity-2
- For 20% opacity..opacity-3
- For 30% opacity..opacity-4
- For 40% opacity..opacity-5
- For 50% opacity..opacity-6
- For 60% opacity..opacity-7
- For 70% opacity..opacity-8
- For 80% opacity..opacity-9
- For 90% opacity.
Border Radius
.rounded-top-0
- No Border Radius for top..rounded-bottom-0
- No Border Radius for bottom..rounded-left-0
- No Border Radius for left..rounded-right-0
- No Border Radius for right.
Borders, Sizing, Spacing (margin & padding) and also much more....
FAQ
A FAQ is a list of frequently asked questions (FAQs) and answers on a particular topic.
Source & Credits
Images:
- Unsplash - https://unsplash.com/
Fonts:
- Icons Font Face - https://fontawesome.com/
Scripts:
- jQuery - http://www.jquery.com/
- Bootstrap 4 - http://getbootstrap.com/
- Highlight Js - https://highlightjs.org/
- jQuery easing - http://gsgd.co.uk/sandbox/jquery/easing/
- Magnific Popup - http://dimsemenov.com/plugins/magnific-popup/
Support
If this documentation doesn't answer your questions, So, Please send us Email via Item Support Page
We are located in GMT +5:30 time zone and we answer all questions within 12-24 hours in weekdays. In some rare cases the waiting time can be to 48 hours. (except holiday seasons which might take longer).
Don’t forget to Rate this template
Go to your Themeforest Profile > Downloads Tab > & then You can Rate & Review for our template.
Thank You.
More Templates
Checkout Our Below Premium Templates
Changelog
See what's new added, changed, fixed, improved or updated in the latest versions.
For Future Updates Follow Us @themeforest / @facebook / @twitter / @Dribbble
Version 1.1 (12 Oct, 2020)
- Added Your information here for added new feature
- Fixed Some minor bugs for browser compatibility
- Fixed Some minor bugs for responsive
- Updated FontAwesome to Latest Version
- Updated Bootstrap to Latest Version
- Updated Improvements in CSS and JS
Version 1.0 (8 April, 2020)
Initial Release