Go To _fonts.scss (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
And paste Your Selected font-family in _fonts.scss
And add the Your Selected font-family in _bootstrap-styles.scss(assets/scss/bootstrap/_bootstrap-styles.scss)
body {
margin: 0;
font-family: "Roboto", sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 1.5;
color: $default-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.
To change Menu icons, open html page and go through app-sidebar
section, in that section you will find feather icons of menu in i
tag, there you can replace previous icon with your icon. Example as shown in below
Go To "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.
To enable Horizontal Click Menu Style you have to open
custom.js
(assets/js/custom.js) file and remove comments for
horizontal
as shown in below
// ***** Horizontal Click Menu ***** //
// $('body').addClass('horizontal');
horizontal
as
shown below
// ***** Horizontal Click Menu ***** //
$('body').addClass('horizontal');
To enable Horizontal Hover Menu Style you have to open
custom.js
(assets/js/custom.js) file and remove comments for
horizontal-hover
as shown in below
// ***** Horizontal Hover Menu ***** //
// $('body').addClass('horizontal-hover');
horizontal-hover
as shown below
// ***** Horizontal Hover Menu ***** //
$('body').addClass('horizontal-hover');
open custom.js assets/js/custom.js
file and you will find below js in
Horizontal (or) Horizontal Hover layout
to enable wrap
style for Horizontal or Horizontal Hover
noWrap style is given as default horizontal menu style,if you want to change it to wrap style please follow below process.
document.querySelector('.horizontal .side-menu').style.flexWrap = 'noWrap'
// $('#slide-left').addClass('d-none');
// $('#slide-right').addClass('d-none');
$('#slide-left').removeClass('d-none');
$('#slide-right').removeClass('d-none');
noWrap
with wrap
as
shown below and remove comments for $('#slide-left').addClass('d-none');
& $('#slide-right').addClass('d-none');
and add comments to $('#slide-left').removeClass('d-none');
& $('#slide-right').removeClass('d-none');
as shown below.
document.querySelector('.horizontal .side-menu').style.flexWrap = 'wrap'
$('#slide-left').addClass('d-none');
$('#slide-right').addClass('d-none');
// $('#slide-left').removeClass('d-none');
// $('#slide-right').removeClass('d-none');
To enable RTL Version you have to open custom.js (assets/js/custom.js) file
and remove comments for rtl
as shown in below
/******* RTL VERSION *******/
// $('body').addClass('rtl');
rtl
as shown
below
/******* RTL VERSION *******/
$('body').addClass('rtl');
To enable Dark Theme you have to open custom.js (assets/js/custom.js) file
and remove comments for dark-mode
as shown in below
//---- Dark mode ----- //
// $('body').addClass('dark-mode');
// $('body').removeClass('light-mode');
// $('body').removeClass('transparent-mode');
dark-mode
as
shown below
//---- Dark mode ----- //
$('body').addClass('dark-mode');
$('body').removeClass('light-mode');
$('body').removeClass('transparent-mode');
To enable Transparent Theme you have to open custom.js
(assets/js/custom.js) file
and remove comments for transparent-mode
as shown in below
//---- Transparent mode ----//
// $('body').addClass('transparent-mode');
// $('body').removeClass('light-mode');
// $('body').removeClass('dark-mode');
transparent-mode
as shown below
//---- Transparent mode ----//
$('body').addClass('transparent-mode');
$('body').removeClass('light-mode');
$('body').removeClass('dark-mode');
To enable Color-header you have to open custom.js (assets/js/custom.js) file
and remove comments for color-header
as shown in below
/******* Header Styles ********/
//$('body').addClass('color-header')
color-header
as shown below
/******* Header Styles ********/
$('body').addClass('color-header')
To enable Dark-header you have to open custom.js (assets/js/custom.js) file
and remove comments for dark-header
as shown in below
/******* Header Styles ********/
//$('body').addClass('dark-header');
dark-header
as
shown below
/******* Header Styles ********/
$('body').addClass('dark-header');
To enable Light-header you have to open custom.js (assets/js/custom.js) file
and remove comments for light-header
as shown in below
/******* Header Styles ********/
//$('body').addClass('light-header');
light-header
as shown below
/******* Header Styles ********/
$('body').addClass('light-header');
To enable Gradient-header you have to open custom.js (assets/js/custom.js) file
and remove comments for gradient-header
as shown in below
/******* Header Styles ********/
//$('body').addClass('gradient-header');
gradient-header
as shown below
/******* Header Styles ********/
$('body').addClass('gradient-header');
To enable Light Menu you have to open custom.js (assets/js/custom.js) file
and remove comments for light-menu
as shown in below
/*Left-menu Styles*/
//$('body').addClass('light-menu');
light-menu
as
shown below
/*Left-menu Styles*/
$('body').addClass('light-menu');
To enable Color Menu you have to open custom.js (assets/js/custom.js) file
and remove comments for color-menu
as shown in below
/*Left-menu Styles*/
//$('body').addClass('color-menu');
color-menu
as
shown below
/*Left-menu Styles*/
$('body').addClass('color-menu');
To enable Dark Menu you have to open custom.js (assets/js/custom.js) file
and remove comments for dark-menu
as shown in below
/*Leftmenu Styles*/
//$('body').addClass('dark-menu');
dark-menu
as
shown below
/*Leftmenu Styles*/
$('body').addClass('dark-menu');
To enable Gradient Menu you have to open custom.js (assets/js/custom.js) file
and remove comments for gradient-menu
as shown in below
/*Leftmenu Styles*/
//$('body').addClass('gradient-menu');
gradient-menu
as shown below
/*Leftmenu Styles*/
$('body').addClass('gradient-menu');
To enable Boxed-Layout you have to open custom.js (assets/js/custom.js) file
and remove comments for layout-boxed
as shown in below
/*Layout-width Styles*/
// $('body').addClass('layout-boxed');
layout-boxed
as shown below
/*Layout-width Styles*/
$('body').addClass('layout-boxed');
To enable Scrollable-Layout you have to open custom.js
(assets/js/custom.js) file
and remove comments for scrollable-layout
as shown in below
/*Header-Position Styles*/
// $('body').addClass('scrollable-layout');
scrollable-layout
as shown below
/*Header-Position Styles*/
$('body').addClass('scrollable-layout');
To enable Sidemenu-Icon-with Text you have to open
custom.js
(assets/js/custom.js) file and remove comments for
icontext-menu
as shown in below
// ***** Icon with Text *****//
// $('body').addClass('icontext-menu');
// $('body').addClass('sidenav-toggled');
// if(document.querySelector('.icontext-menu').firstElementChild.classList.contains('login-img') !== true){
// icontext();
// }
icontext-menu
as shown below
// ***** Icon with Text *****//
$('body').addClass('icontext-menu');
$('body').addClass('sidenav-toggled');
if(document.querySelector('.icontext-menu').firstElementChild.classList.contains('login-img') !== true){
icontext();
}
To enable Sidemenu-Icon Overlay you have to open custom.js
(assets/js/custom.js) file
and remove comments for icon-overlay
as shown in below
// ***** Icon Overlay ***** //
// $('body').addClass('icon-overlay');
// $('body').addClass('sidenav-toggled');
icon-overlay
as shown below
// ***** Icon Overlay ***** //
$('body').addClass('icon-overlay');
$('body').addClass('sidenav-toggled');
To enable Closed Sidemenu you have to open custom.js (assets/js/custom.js) file
and remove comments for closed-leftmenu
as shown in below
// ***** closed-leftmenu ***** //
// $('body').addClass('closed-leftmenu');
// $('body').addClass('sidenav-toggled')
closed-leftmenu
as shown below
// ***** closed-leftmenu ***** //
$('body').addClass('closed-leftmenu');
$('body').addClass('sidenav-toggled')
To enable Hover Sidemenu you have to open custom.js (assets/js/custom.js) file
and remove comments for hover-submenu
as shown in below
// ***** hover-submenu ***** //
// $('body').addClass('hover-submenu');
// $('body').addClass('sidenav-toggled')
// if(document.querySelector('.hover-submenu').firstElementChild.classList.contains('login-img') !== true){
// hovermenu();
// }
hover-submenu
as shown below
// ***** hover-submenu ***** //
$('body').addClass('hover-submenu');
$('body').addClass('sidenav-toggled')
if(document.querySelector('.hover-submenu').firstElementChild.classList.contains('login-img') !== true){
hovermenu();
}
To enable Hover Sidemenu Style 1 you have to open custom.js
(assets/js/custom.js) file
and remove comments for hover-submenu1
as shown in below
// ***** hover-submenu style 1 ***** //
// $('body').addClass('hover-submenu1');
// $('body').addClass('sidenav-toggled')
// if(document.querySelector('.hover-submenu1').firstElementChild.classList.contains('login-img') !== true){
// hovermenu();
// }
hover-submenu1
as shown below
// ***** hover-submenu style 1 ***** //
$('body').addClass('hover-submenu1');
$('body').addClass('sidenav-toggled')
if(document.querySelector('.hover-submenu1').firstElementChild.classList.contains('login-img') !== true){
hovermenu();
}