Dashplex - Django Bootstrap 5 Admin & Dashboard Template

Dashboard
Welcome to Dashplex – Django Bootstrap5 Admin & Dashboard Template
  • Created Date: 22/03/2022
  • Author: Spruko
  • Company: Spruko Technologies Private Limited
  • Support: support@spruko.com

Thank you for showing interest towards our admin template. Feel free to contact us any time. We have a dedicated team to provide you the best support. If you want any queries please contact live chat or email : support@spruko.com

If You Love Our Template Design Please don't forget to rate it. Thank you so much!

Introduction

Dashplex - Admin Template, With these template formats, it's very easy to create a presence and grab someone's attention around the web page Because the template is built using django, HTML5, CSS3, Bootstrap 5 framework and with Sass. So please before you start working with the template take a quick look on the documentation so that you can easily built your website.

If You Love Our Template Design Please don't forgot to rate it. Thank you so much! 😊

Template Description

Dashplex is a Bootstrap Admin & Dashboard template using modern and minimal design. It is fully flexible user-friendly and responsive. Dashplex admin template is powered with HTML 5, SASS, & Bootstrap 5 which looks great on Desktops, Tablets, and Mobile Devices. This Template Includes 100+ HTML Pages & 50+ Plugins & more UI elements . No Need to do hard work for this template customization. We already designed it and you can easily design your website just how you like it. Advanced Form-Elements like Date pickers, form elements are included. This template using Bootstrap5 framework. This admin template is fully 100% Premium Admin Templates quality. This template designed for using HTML5,CSS3,Jquery. After Purchased this template you will get All HTML files,CSS, Scss and JS Files.

It has super clean flat user interface admin Backend design, easy customizable components and widgets.The Template comes with a awesome unique design also we ensure you can easily design admin template.

It is a fully responsive layout for all type of devices. Works on all major web browsers, Desktop, iPhone, iPad, Tablet and all other smart phone devices

Once you Purchase Dashplex , you will be able to get free download of all future updates.

Template Features
Vertical-menu Horizontal Click menu Horizontal Hover menu
RTL Ready 100+ HTML Pages Bootstrap 5 Responsive Framework
Well Commented Code 24 * 7 Professional Company Support 50+ Plugins
Sales Dashbaord Crypto Currency Dashboard Ecommerce Dashboard
Gallery 5 types of Charts Select2
About us Blog File Manager
Settings Page Blog Details Calendar
Mail Inbox 12 Types of Icons File upload
Message Chat Form Elements Month & Date & Year Range Pickers
Form Advanced Elements Data Tables Lockscreen Page
Error Pages Under Construction Page User Profile
Invoice Page Advanced Pricing Tables Easy to Customize
More Widgets Neat, clean and simple design W3C Validated
Minimum Requirements

  • Python >= 3.10.1
  • Django >= 4.0.2
  • pip >= 22.0.3
  • asgiref >=3.5.0
  • pytz >=2021.5
  • sqlparse >=0.4.2
  • django-htmlmin >==0.11.0
Installation Process of Python

In order to run Django you need to install Python by the following steps
This steps are based on Windows OS

Step1: Please visit the Official Web Site of the Python python.org

Step2: Click on the Download Python button

Step3: Now your Python setup file has downloaded

Step4: Now Right click on the Python setup file and select Run as administrator click on Yes

Step5: Please click on the Check Box Add Python to PATH. And select Customize installation option

Step6: Click on Install for all users. And click on the Install button to install python on your system

Step7: To check whether Python is installed or not type python --version in your terminal or console

Step8: The pip package is automatically installed with your python installation

Step9: To check whether pip package is installed or not type pip --version in your terminal or console

NOTE: Please follow the official web site python.org to install on Linux/UNIX OS.

SET-UP DJANGO PROJECT

  • Assume that you have already installed python in your computer.
  • First, you need to create an environment at your project location. where, you want to create your project in your computer globally or locally by setting your project path in the terminal.
  • To create Virtualenv type python -m venv env in your terminal or console
  • Now you need to activate your Virtualenv by typing env\scripts\activate
  • You must activate your Virtualenv to download any new dependencies "locally", otherwise those dependencies you install will install "globally"
INSTALLATION PROCESS OF Django

Here we are using "Python Manager" to download "Django"

If you know how to create Django project you can skip this step.

  • First open command prompt in my case Example:C:\Users\ADMIN01> and type pip install django to install Django globally.
  • To check whether Django is installed or not type python -m django --version in your terminal or console
  • Now open a new command prompt and navigate to the folder where you want to create the Django project.
  • In my case Example:C:\Users\ADMIN01\Desktop\django>.
  • Now type the following command line django-admin startproject projectname and hit enter to create Django project. Here projectname is nothing but your django project folder name that you want to keep as your project name
  • Now you are sucessfully created Django project.
  • To create App or Application navigate to your django project folder Example:C:\Users\ADMIN01\Desktop\django\projectname> in your command prompt and type python manage.py startapp appname
  • Now you are sucessfully created App in your django project.
  • The project that you received will have a file called the requirements.txt file. Now go to that file location and then in your terminal type pip install -r requirements.txt
  • The above command will download all the required packages by using the requirements.txt file.
  • We have an improtant dependency or module called django-htmlmin it is used to minify the html content. You have already installed HTML_MINIFY with the help of requirements.txt file
  • By default we are disabling HTML_MINIFY module i.e., HTML_MINIFY= False if you want to enable HTML_MINIFY module please follow the root path Dashplex/settings.py in that file you will find HTML_MINIFY= False then change it into HTML_MINIFY= True
  • NOTE: If you have any further queries in installation please refer to the official website HERE

After installation run following command to get Django development server
python manage.py runserver
The Basic Structure Of Django Project

											
												├── app/
												|   ├── __pycache__/
												|   ├── migrations/
												|   ├── templates/
												|   |   ├── components/
												|   |   |   ├── layouts/
												|   |   |   ├── base.html	
												|   |   |   ├── custom-base.html
												|   |   |   └── switcher-base.html
												|   |   └── 100+ HTML files																							
												├── Dashplex/
												├── static/
												|   └── assets/
												├── db.sqlite3
												├── gulpfile.js
												├── manage.py
												├── package.json
											 
										
  • First, unzip the project folder that you received from us.
  • Navigate as shown Example: F:\project folder\app\templates in that template folder will have 100+ HTML pages
  • Navigate as shown Example: F:\project folder\app\templates\ Open components folder there you will find base.html, custom-base.html and switcher-base.html files
  • Navigate as shown Example: F:\project folder\app\templates\components\ Open layouts folder there you will find common files of all pages Ex: app-header, app-sidebar, styles, scripts etc.,
  • Here base.html file is the base file for all html pages
  • Here custom-base.html file is the base file for all custom pages ex: signin.html, signup.html, etc..,
  • And switcher-base.html file is the base file for switcherpage.html page
  • By default switcher is enabled in your template so the custom styles will not work i.e., RTL, horizontal, hover and etc..,. So if you want to enable those styles, first you need to remove or disable switcher in your template as shown in switcher section in documentation.
  • Please refer FAQ'S to activate other versions and styles like RTL, horizontal, horizontal-hover, Dark-mode, Boxed-Layout, Sidemenu-Icon. etc..,
SCSS & CSS

Here we provided the packages.json and gulpfile.js files in your project you just need to run npm install in your terminal at your project root path.

After compilation of download, you can compile your SCSS into CSS files by following the below procedure.

Command Description
gulp Runs the project locally, starts the development server and watches for any changes in your sass files and folders etc. The development server is accessible at http://localhost:8000.
gulp watch In this template gulp watch command is for what ever changes made in scss files, will watch and compiled into css files.
gulp color In this template gulp color command is for what ever changes made in color.scss file, will be compiled and the changes will update in color.css file in css folder.
gulp dark In this template gulp dark command is for what ever changes that are made in dark.scss file will be compiled and the changes will update in dark.css file in css folder.
gulp transparent In this template gulp transparent command is for what ever changes are made in transparent.scss file will be compiled and the changes will update in transparent.css file in css folder.
gulp skins In this template gulp skins command is for what ever changes are made in skin-modes.scss file will be compiled and the changes will update in skin-modes.css file in css folder.
Software Versions Used:
  • python : 3.10.1
  • Django : 4.0.2
  • pip : 22.0.3
  • asgiref : 3.5.0
  • beautifulsoup4 : 4.10.0
  • django-htmlmin : 0.11.0
  • html5lib : 1.1
  • six : 1.16.0
  • soupsieve : 2.3.1
  • sqlparse : 0.4.2
  • tzdata : 2021.5
  • webencodings : 0.5.1
Over All Folder Structure
				
					├── app/
					|   ├── __pycache__
					|   ├── migrations/
					|   ├── templates/
					|   |   ├── components/
					|   |   |   ├── layouts/
					|   |   |   |   ├── app-header.html	
					|   |   |   |   ├── app-sidebar.html	
					|   |   |   |   ├── custom-scripts.html	
					|   |   |   |   ├── custom-styles.html	
					|   |   |   |   ├── footer.html	
					|   |   |   |   ├── modal.html	
					|   |   |   |   ├── scripts.html	
					|   |   |   |   ├── styles.html	
					|   |   |   |   ├── sidebar-right.html	
					|   |   |   |   └── switcher.html	
					|   |   |   ├── base.html	
					|   |   |   ├── custom-base.html	
					|   |   |   └── switcher-base.html	
					|   |   └── 100+ HTML files
					|   ├── __init__.py
					|   ├── admin.py
					|   ├── apps.py
					|   ├── models.py
					|   ├── tests.py
					|   ├── urls.py
					|   └── views.py									
					├── Dashplex/
					|   ├── __pycache__
					|   ├── __init__.py
					|   ├── asgi.py
					|   ├── settings.py
					|   ├── urls.py
					|   └── wsgi.py
					├── static/
					|   └── assets/
					|        ├── css/
					|        ├── img/
					|        ├── js/
					|        ├── plugins/
					|        ├── scss/
					|        ├── switcher/
					|        └── web-fonts/
					├── db.sqlite3
					├── gulpfile
					├── manage.py
					└── package.json
				
			
Theme Styles
Primary Color

How to Change Primary Color?

Please follow the bellow steps to change Primary Color

To change Primary Color you have to open _bootstrap-custom.scss file and replace with the color you want as shown in below

Rootpath : _bootstrap-custom.scss (static/assets/scss/bootstrap/_bootstrap-custom.scss )

EXAMPLE :

NOTE: After Changing color you must run gulp command. Refer gulp page for more gulp commands click here.

Light Theme Style

How to Change Light Background Color?

Please follow the bellow steps to change Light Background Color
BEFORE :

To change Light Background Color you have to open _variables.scss file and replace with the color you want as shown in below

Rootpath : _variables.scss (static/assets/scss/_variables.scss )

EXAMPLE :

NOTE: After Changing color you must run gulp command. Refer gulp page for more gulp commands click here.

How to Change Light Text Color?

Please follow the bellow steps to change Light Text Color
BEFORE :

To change Light Text Color you have to open _variables.scss file and replace with the color you want as shown in below

Rootpath : _variables.scss (static/assets/scss/_variables.scss )

EXAMPLE :

NOTE: After Changing color you must run gulp command. Refer gulp page for more gulp commands click here.

How to Change Light Border Color?

Please follow the bellow steps to change Light Border Color
BEFORE :

To change Light Border Color you have to open _variables.scss file and replace with the color you want as shown in below

Rootpath : _variables.scss (static/assets/scss/_variables.scss )

EXAMPLE :

NOTE : After Changing color you must run gulp command. Refer gulp page for more gulp commands click here.

Dark Theme Style

How to Change Dark body Color?

Please follow the bellow steps to change Dark body Color
BEFORE :

To change Dark body Color you have to open _variables.scss file and replace with the color you want as shown in below

Rootpath : _variables.scss (static/assets/scss/_variables.scss )

EXAMPLE :

NOTE : After Changing color you must run gulp command. Refer gulp page for more gulp commands click here.

How to Change Dark Theme Color?

Please follow the bellow steps to change Dark Theme Color
BEFORE :

To change Dark Theme Color you have to open _variables.scss file and replace with the color you want as shown in below

Rootpath : _variables.scss (static/assets/scss/_variables.scss )

EXAMPLE :

NOTE : After Changing color you must run gulp command. Refer gulp page for more gulp commands click here.

Transparent Theme Style

How to Change Transparent Body Color?

Please follow the bellow steps to change Transparent Body Color
BEFORE :

To change Transparent Body Color you have to open _bootstrap-custom.scss file and replace with the color you want as shown in below

Rootpath : _bootstrap-custom.scss (static/assets/scss/bootstrap/_bootstrap-custom.scss )

EXAMPLE :

NOTE : After Changing color you must run gulp command. Refer gulp page for more gulp commands click here.

Background Image Style

NOTE: By default the switcher is enabled in your template, if you want to use any of the features specified in Theme Styles, then you must remove Switcher from your template i.e., The two styles or features will not work at a time.

How to Enable Transparent Background Image Style1?

Please follow the bellow steps to enable Transparent Background Image Style1

To enable Transparent Background Image you have to open custom.js file and remove comments for bg-img1 as shown in below


					/* Transparent Bg-Image1 Style Start */

						// $('body').addClass('transparent-theme');
						// $('body').addClass('bg-img1');
						// $('body').removeClass('light-theme');
						// $('body').removeClass('dark-menu');

					/* Transparent Bg-Image1 Style End */
					
Remove the comments to enable bg-img1 as shown below

					/* Transparent Bg-Image1 Style Start */
					
						$('body').addClass('transparent-theme');
						$('body').addClass('bg-img1');
						$('body').removeClass('light-theme');
						$('body').removeClass('dark-menu');
						
					/* Transparent Bg-Image1 Style End */
					

Go To "static/assets/img/media" folder and replace your image with Previous image(bg-img1) within in image size.

NOTE: Please don't increase image size. Replace your image within given image size. otherwise the image will not fit in particular place it disturbs the template design.

How to Enable Transparent Background Image Style2?

Please follow the bellow steps to enable Transparent Background Image Style2

To enable Transparent Background Image Style2 you have to open custom.js file and remove comments for bg-img2 as shown in below


					/* Transparent Bg-Image2 Style Start */
					
						// $('body').addClass('transparent-theme');
						// $('body').addClass('bg-img2');
						// $('body').removeClass('light-theme');
						// $('body').removeClass('dark-menu');
						
					/* Transparent Bg-Image2 Style End */
					
Remove the comments to enable bg-img2 as shown below

					/* Transparent Bg-Image2 Style Start */
					
						$('body').addClass('transparent-theme');
						$('body').addClass('bg-img2');
						$('body').removeClass('light-theme');
						$('body').removeClass('dark-menu');
						
					/* Transparent Bg-Image2 Style End */
					

Go To "static/assets/img/media" folder and replace your image with Previous image(bg-img2) within in image size.

NOTE: Please don't increase image size. Replace your image within given image size. otherwise the image will not fit in particular place it disturbs the template design.

How to Enable Transparent Background Image Style3?

Please follow the bellow steps to enable Transparent Background Image Style3

To enable Transparent Background Image Style3 you have to open custom.js file and remove comments for bg-img3 as shown in below


				
					/* Transparent Bg-Image3 Style Start */
					
						// $('body').addClass('transparent-theme');
						// $('body').addClass('bg-img3');
						// $('body').removeClass('light-theme');
						// $('body').removeClass('dark-menu');
						
					/* Transparent Bg-Image3 Style End */
					
Remove the comments to enable bg-img3 as shown below

				
					/* Transparent Bg-Image3 Style Start */
					
						$('body').addClass('transparent-theme');
						$('body').addClass('bg-img3');
						$('body').removeClass('light-theme');
						$('body').removeClass('dark-menu');
						
					/* Transparent Bg-Image3 Style End */
					

Go To "static/assets/img/media" folder and replace your image with Previous image(bg-img3) within in image size.

NOTE: Please don't increase image size. Replace your image within given image size. otherwise the image will not fit in particular place it disturbs the template design.

How to Enable Transparent Background Image Style4?

Please follow the bellow steps to enable Transparent Background Image Style4

To enable Transparent Background Image Style4 you have to open custom.js file and remove comments for bg-img4 as shown in below


				
					/* Transparent Bg-Image4 Style Start */
					
						// $('body').addClass('transparent-theme');
						// $('body').addClass('bg-img4');
						// $('body').removeClass('light-theme');
						// $('body').removeClass('dark-menu');
						
					/* Transparent Bg-Image4 Style End */
					
Remove the comments to enable bg-img4 as shown below

				
					/* Transparent Bg-Image4 Style Start */
					
						$('body').addClass('transparent-theme');
						$('body').addClass('bg-img4');
						$('body').removeClass('light-theme');
						$('body').removeClass('dark-menu');
						
					/* Transparent Bg-Image4 Style End */
														

Go To "static/assets/img/media" folder and replace your image with Previous image(bg-img4) within in image size.

NOTE: Please don't increase image size. Replace your image within given image size. otherwise the image will not fit in particular place it disturbs the template design.

Switcher

By default the switcher is enabled in your template, if you want to remove switcher from your template please follow the process

Go to root path: app/templates/components/ open "base.html" in that file, below the body tag remove the swithcer link as shown below.

							
		

BEFORE :

						
		

AFTER :

Go to root path: app/templates/components/layouts/ open "styles.html" file and remove switcher css links given below.

																
		

REMOVE SWITCHER CSS :

Go to root path: app/templates/components/layouts/ open "scripts.html" file and remove switcher js link given below.

																
		

STEP 1:REMOVE SWITCHER JS

STEP 2: CHANGE CUSTOM1.JS LINK TO CUSTOM.JS LINK

BEFORE :

AFTER :

Go to root path: app/templates/components/layouts/ open "app-header.html" file and at the bottom of that page remove the "switcher-icon code" given below.

																
		

REMOVE SWITCHER-ICON CODE :

After completion of this process perform python manage.py runserver in your terminal.

NOTE: If you remove switcher styles and scripts in your template, then switcherpage.html page present in templates folder root path: app/templates/ will not work properly. If you want to use switcherpage.html then go to root path: app/templates/ open switcherpage.html then uncomment the styles and scripts which are commented.(Skip this process if this is not your requirement).

Uncomment the styles and scripts which are commented in switcherpage.html.

																
		

UNCOMMENT STYLES :

UNCOMMENT STYLES :

NOTE: After completing this process please perform python manage.py runserver command

How to change colors of any chart according to the primary color of the template?

This process is only for change colors of a new chart according to the theme color.

If you want to add a new chart in any page of your template (for example in my case : "empty.html" page).

How to change colors of any chart according to the primary color of the template?

  • Assume that you want to add a new chart in empty.html page.
  • Then place your chart js data in exported.js file present in static/assets/js/exported.js.
  • NOTE: You have to add your new chart js data in exported.js file, otherwise your chart color will not be change as primary color of the template.
  • If you are using more than one chart in empty.html page, then, create a new function() and with a new id (here id is nothing but a name that you used for your particular chart. function() name and ID name must be unique for every chart).
  • Here i created a new function with name (myChart()) and i gave it an id i.e., chartId for my new chart in empty.html page

		

FOR CHART 1:


		

FOR CHART 2:

How to apply colors to the new chart?

Open exported.js (root path: static/assets/js/exported.js) and add your chart id and function inside of the function names() function of (// chart colors) section as shown below.


					
					
  • Here (#chartId1) is nothing but, the id that you used for your particular chart.
  • Here myChart1(); is nothing but a function that you used for your particular chart.
  • Add( myVarVal ) variable in your chart js data, where you want to change the colors of your chart according to the primary color of the template.
  • NOTE: For more understanding please refer below code which we used in exported.js file present in root path: "static/assets/js/exported.js".
  • colors: [ myVarVal ||'#9fa8e0'],
  • Here myVarVal variable is used as primaryColor of the template, if you use this variable anywhere in the template then the color of that particular place will change according to theme color
FAQS

NOTE: By default the switcher is enabled in your template, if you want to use any of the features specified in FAQ'S, then you must remove Switcher from your template i.e., The two styles or features will not work at a time.

General Style

How to Change Font Style ?

Step 1:

Go To _fonts.scss (static/assets/scss/custom/fonts/_fonts.scss )

if you want to change another font-family Go to the site Google Fonts And Select One font Family and import In to style.css file

How to Select font Family

Example:

Step 2:

And paste Your Selected font-family in _fonts.scss

Example:
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900");

Step 3:

And add the Your Selected font-family in _bootstrap-styles.scss(static/assets/scss/bootstrap/_bootstrap-styles.scss)

Example:

					
				body {
					margin: 0;
					font-family: "Roboto", sans-serif;
					font-size: 14px;
					font-weight: 400;
					line-height: 1.5;
					color: $color;
					text-align: left;
					background-color: $background;
				}
				

Note : After Changing font you must run gulp command i.e, gulp watch . Refer gulp page for more gulp commands click here.

How to Change Logo ?

Go To "static/assets/images/brand" folder and replace your logo with Previous Logos within in image size.

NOTE: Please don't increase logo sizes. Replace your logo within given image size. otherwise the logo will not fit in particular place it disturbs the template design.

Navigation Style

How to Enable Horizontal Click Menu?

Please follow the bellow steps to enable Horizontal Click Menu Style

To enable Horizontal Click Menu Style you have to open custom.js (static/assets/js/custom.js) file and remove comments for horizontalmenu as shown in below


						

						/* Horizontal Menu Start */
							// $('body').addClass('horizontalmenu');
							// if(document.querySelector('.page').classList.contains('main-signin-wrapper') !== true){
							// 	checkHoriMenu();
							// }
						/*Horizontal Menu End */

														
Remove the comments to enable horizontalmenu as shown below

						

						/* Horizontal Menu Start */
							$('body').addClass('horizontalmenu');
							if(document.querySelector('.page').classList.contains('main-signin-wrapper') !== true){
								checkHoriMenu();
							}
						/*Horizontal Menu End */

														

How to Enable Horizontal Hover Menu?

Please follow the bellow steps to enable Horizontal Hover Menu Style

To enable Horizontal Hover Menu Style you have to open custom.js (static/assets/js/custom.js) file and remove comments for horizontalmenu-hover as shown in below

						

						/* Horizontal Hover Menu Start */
							// $('body').addClass('horizontalmenu-hover');
							// if(document.querySelector('.page').classList.contains('main-signin-wrapper') !== true){
							// 	checkHoriMenu();
							// }
						/* Horizontal Hover Menu End */

														
Remove the comments to enable horizontalmenu-hover as shown below
						/* Horizontal Hover Menu Start */
							$('body').addClass('horizontalmenu-hover');
							if(document.querySelector('.page').classList.contains('main-signin-wrapper') !== true){
								checkHoriMenu();
							}
						/* Horizontal Hover Menu End */
														
How to Enable RTL Version

How to Enable RTL Version?

Please follow the bellow steps to enable RTL Version

To enable RTL Version you have to open custom.js (static/assets/js/custom.js) file and remove comments for rtl as shown in below

						

						/* RTL version Start */
							// $('body').addClass('rtl');
						/* RTL version End */

														
Remove the comments to enable rtl as shown below
						

						/* RTL version Start */
							$('body').addClass('rtl');
						/* RTL version End */

														
Theme Styles

How to Enable Dark Theme?

Please follow the bellow steps to enable Dark Theme

To enable Dark Theme you have to open custom.js (static/assets/js/custom.js) file and remove comments for dark-theme as shown in below

					
					/* Dark Theme Start */
						// $('body').addClass('dark-theme');
						// $('body').removeClass('light-theme');
					/* Dark Theme End */

														
Remove the comments to enable dark-theme as shown below
						

					/* Dark Theme Start */
						$('body').addClass('dark-theme');
						$('body').removeClass('light-theme');
					/* Dark Theme End */

														

How to Enable Transparent Theme?

Please follow the bellow steps to enable Transparent Theme

To enable Transparent Theme you have to open custom.js (static/assets/js/custom.js) file and remove comments for transparent-theme as shown in below

						

					/* Transparent Theme Start */
						// $('body').addClass('transparent-theme');
						// $('body').removeClass('light-theme');
						// $('body').removeClass('dark-menu');
					/* Transparent Theme End */

														
Remove the comments to enable transparent-theme as shown below
						

					/* Transparent Theme Start */
						$('body').addClass('transparent-theme');
						$('body').removeClass('light-theme');
						$('body').removeClass('dark-menu');
					/* Transparent Theme End */

														
Header Styles

How to Enable Color-header?

Please follow the bellow steps to enable Color-header

To enable Color-header you have to open custom.js (static/assets/js/custom.js) file and remove comments for color-header as shown in below

						

					/* Color Header Start */
						// $('body').addClass('color-header');
					/* Color Header End */

														
Remove the comments to enable color-header as shown below
						

					/* Color Header Start */
						$('body').addClass('color-header');
					/* Color Header End */

														

How to Enable Dark-header?

Please follow the bellow steps to enable Dark-header

To enable Dark-header you have to open custom.js (static/assets/js/custom.js) file and remove comments for header-dark as shown in below

						

					/* Dark Header Start */
						// $('body').addClass('header-dark');
					/* Dark Header End */

														
Remove the comments to enable header-dark as shown below
						

					/* Dark Header Start */
						$('body').addClass('header-dark');
					/* Dark Header End */

														

How to Enable Light-header?

Please follow the bellow steps to enable Light-header

To enable Light-header you have to open custom.js (static/assets/js/custom.js) file and remove comments for header-light as shown in below

						

					/* Light Header Start */
						// $('body').addClass('header-light');
					/* Light Header End */

														
Remove the comments to enable header-light as shown below
						

					/* Light Header Start */
						$('body').addClass('header-light');
					/* Light Header End */
														
Menu Styles

How to Enable Light Menu?

Please follow the bellow steps to enable Light Menu

To enable Light Menu you have to open custom.js (static/assets/js/custom.js) file and remove comments for light-menu as shown in below

						
					/* Light Menu Start */
						// $('body').addClass('light-menu');
						// $('body').removeClass('dark-menu');
					/* Light Menu End */
													
Remove the comments to enable light-menu as shown below
						
					/* Light Menu Start */
						$('body').addClass('light-menu');
						$('body').removeClass('dark-menu');
					/* Light Menu End */
													

How to Enable Color Menu?

Please follow the bellow steps to enable Color Menu

To enable Color Menu you have to open custom.js (static/assets/js/custom.js) file and remove comments for color-menu as shown in below

						
					/* Color Menu Start */
						// $('body').addClass('color-menu');
						// $('body').removeClass('dark-menu');
					/* Color Menu End */
													
Remove the comments to enable color-menu as shown below
						
					/* Color Menu Start */
						$('body').addClass('color-menu');
						$('body').removeClass('dark-menu');
					/* Color Menu End */
													

How to Enable Dark Menu?

Please follow the bellow steps to enable Dark Menu

To enable Dark Menu you have to open custom.js (static/assets/js/custom.js) file and remove comments for dark-menu as shown in below

						
					/* Dark Menu Start */
						// $('body').addClass('dark-menu');
					/* Dark Menu End */
													
Remove the comments to enable dark-menu as shown below
						
					/* Dark Menu Start */
						$('body').addClass('dark-menu');
					/* Dark Menu End */
													
Layout Width Styles

How to Enable Full-Width-Layout?

Please follow the bellow steps to enable Full-Width-Layout

To enable Full-Width-Layout you have to open custom.js (static/assets/js/custom.js) file and remove comments for layout-fullwidth as shown in below

						
					/* Full Width Layout Start */
						// $('body').addClass('layout-fullwidth');
					/* Full Width Layout End */
													
Remove the comments to enable layout-fullwidth as shown below
						
					/* Full Width Layout Start */
						$('body').addClass('layout-fullwidth');
					/* Full Width Layout End */
													

How to Enable Boxed-Layout?

Please follow the bellow steps to enable Boxed-Layout

To enable Boxed-Layout you have to open custom.js (static/assets/js/custom.js) file and remove comments for layout-boxed as shown in below

						
					/* Boxed Layout Start */
						// $('body').addClass('layout-boxed');
					/* Boxed Layout End */
													
Remove the comments to enable layout-boxed as shown below
						
					/* Boxed Layout Start */
						$('body').addClass('layout-boxed');
					/* Boxed Layout End */
													
Layout Positions

How to Enable Scrollable-Layout?

Please follow the bellow steps to enable Scrollable-Layout

To enable Scrollable-Layout you have to open custom.js (static/assets/js/custom.js) file and remove comments for scrollable-layout as shown in below

						
					/* Header-Scrollable Start */
						// $('body').addClass('scrollable-layout');
					/* Header-Scrollable End */
													
Remove the comments to enable scrollable-layout as shown below
						
					/* Header-Scrollable Start */
						$('body').addClass('scrollable-layout');
					/* Header-Scrollable End */
													

How to Enable Fixed-Layout?

Please follow the bellow steps to enable Fixed-Layout

To enable Fixed-Layout you have to open custom.js (static/assets/js/custom.js) file and remove comments for fixed-layout as shown in below

						
					/* Header-Fixed Start */
						// $('body').addClass('fixed-layout');
					/* Header-Fixed End */
													
Remove the comments to enable fixed-layout as shown below
						
					/* Header-Fixed Start */
						$('body').addClass('fixed-layout');
					/* Header-Fixed End */
													
Sidemenu layout Styles

How to Enable Sidemenu-Icon-with Text?

Please follow the bellow steps to enable Sidemenu-Icon-with Text

To enable Sidemenu-Icon-with Text you have to open custom.js (static/assets/js/custom.js) file and remove comments for icontext-menu as shown in below

						
					/* Icon Text Sidemenu Start */
						// $('body').addClass('icontext-menu');
						// $('body').addClass('main-sidebar-hide');
						// if(document.querySelector('.page').classList.contains('main-signin-wrapper') !== true){
						// icontext();
						// }
					/* Icon Text Sidemenu End */
													
Remove the comments to enable icontext-menu as shown below
						
					/* Icon Text Sidemenu Start */
						$('body').addClass('icontext-menu');
						$('body').addClass('main-sidebar-hide');
						if(document.querySelector('.page').classList.contains('main-signin-wrapper') !== true){
						icontext();
						}
					/* Icon Text Sidemenu End */
													

How to Enable Sidemenu-Icon Overlay?

Please follow the bellow steps to enable Sidemenu-Icon Overlay

To enable Sidemenu-Icon Overlay you have to open custom.js (static/assets/js/custom.js) file and remove comments for icon-overlay as shown in below

						
					/* Icon Overlay Sidemenu Start */
						// $('body').addClass('icon-overlay');
						// $('body').addClass('main-sidebar-hide');
						// hovermenu();
					/* Icon Overlay Sidemenu End */
													
Remove the comments to enable icon-overlay as shown below
						
					/* Icon Overlay Sidemenu Start */
						$('body').addClass('icon-overlay');
						$('body').addClass('main-sidebar-hide');
						hovermenu();
					/* Icon Overlay Sidemenu End */
													

How to Enable Closed Sidemenu?

Please follow the bellow steps to enable Closed Sidemenu

To enable Closed Sidemenu you have to open custom.js (static/assets/js/custom.js) file and remove comments for closed-leftmenu as shown in below

						
					/* Closed Sidemenu Start */
						// $('body').addClass('closed-leftmenu');
						// $('body').addClass('main-sidebar-hide');
					/* Closed Sidemenu End */
													
Remove the comments to enable closed-leftmenu as shown below
						
					/* Closed Sidemenu Start */
						$('body').addClass('closed-leftmenu');
						$('body').addClass('main-sidebar-hide');
					/* Closed Sidemenu End */
													

How to Enable Hover Sidemenu?

Please follow the bellow steps to enable Hover Sidemenu

To enable Hover Sidemenu you have to open custom.js (static/assets/js/custom.js) file and remove comments for hover-submenu as shown in below

						
					/* Hover Submenu Start */
						// $('body').addClass('hover-submenu');
						// $('body').addClass('main-sidebar-hide');
						// if(document.querySelector('.page').classList.contains('main-signin-wrapper') !== true){
						// 	hovermenu();
						// }
					/* Hover Submenu End */
													
Remove the comments to enable hover-submenu as shown below
						
					/* Hover Submenu Start */
						$('body').addClass('hover-submenu');
						$('body').addClass('main-sidebar-hide');
						if(document.querySelector('.page').classList.contains('main-signin-wrapper') !== true){
							hovermenu();
						}
					/* Hover Submenu End */
													

How to Enable Hover Sidemenu Style 1?

Please follow the bellow steps to enable Hover Sidemenu Style 1

To enable Hover Sidemenu Style 1 you have to open custom.js (static/assets/js/custom.js) file and remove comments for hover-submenu1 as shown in below

						
					/* Hover Submenu Style 1 Start */
						// $('body').addClass('hover-submenu1');
						// $('body').addClass('main-sidebar-hide');
						// if(document.querySelector('.page').classList.contains('main-signin-wrapper') !== true){
						// 	hovermenu();
						// }
					/* Hover Submenu Style 1 End */
													
Remove the comments to enable hover-submenu1 as shown below
						
					/* Hover Submenu Style 1 Start */
						$('body').addClass('hover-submenu1');
						$('body').addClass('main-sidebar-hide');
						if(document.querySelector('.page').classList.contains('main-signin-wrapper') !== true){
							hovermenu();
						}
					/* Hover Submenu Style 1 End */
													
Font Used

Google fonts are used in the template. They are as follows: Google Fonts

Credits

Images credits by : vecteezy.com. All images are used from vecteezy website. Only we used for preview purpose if you want to use purchase vecteezy

Icons are used from iconscout website: iconscout.com.

THANK YOU !!!