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-size: 14px;
font-weight: 400;
line-height: 1.5;
color: #3f3e50;
text-align: left;
background-color: $background;
font-family: 'Roboto', sans-serif;
}
Note : After Changing font you must run gulp command i.e, gulp watch
. Refer gulp page for more gulp commands click here.
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 RTL Version you have to open switcher-custom.js (assets/js/switcher-custom.js) file and remove comments for rtl
as shown in below
/* RTL version Start */
// $('body').addClass('rtl');
/* RTL version End */
rtl
as shown below
/* RTL version Start */
$('body').addClass('rtl');
/* RTL version End */
To enable Dark Theme you have to open switcher-custom.js (assets/js/switcher-custom.js) file and remove comments for dark-theme
as shown in below
/* Dark Theme Start */
// $('body').addClass('dark-theme');
/* Dark Theme End */
dark-theme
as shown below
/* Dark Theme Start */
$('body').addClass('dark-theme');
/* Dark Theme End */
To enable Light Theme you have to open switcher-custom.js(assets/js/switcher-custom.js) file and remove comments for light-theme
as shown in below
/* Light Theme Start */
// $('body').addClass('light-theme');
/* Light Theme End */
light-theme
as shown below
/* Light Theme Start */
$('body').addClass('light-theme');
/* Light Theme End */
To enable Header Style 1 you have to open switcher-custom.js (assets/js/switcher-custom.js) file and remove comments for headerstyle-1
as shown in below
/* Header Style 1 Start */
// $('body').addClass('headerstyle1');
// $('body').removeClass('headerstyle2');
// $('body').removeClass('headerstyle3');
/* Header Style 1 End */
headerstyle-1
as shown below
/* Header Style 1 Start */
$('body').addClass('headerstyle1');
$('body').removeClass('headerstyle2');
$('body').removeClass('headerstyle3');
/* Header Style 1 End */
To enable Header Style 2 you have to open switcher-custom.js (assets/js/switcher-custom.js) file and remove comments for Header Style 1
as shown in below
/* Header Style 2 Start */
// $('body').addClass('headerstyle2');
// $('body').removeClass('headerstyle1');
// $('body').removeClass('headerstyle3');
/* Header Style 2 End */
Header Style 1
as shown below
/* Header Style 2 Start */
$('body').addClass('headerstyle2');
$('body').removeClass('headerstyle2');
$('body').removeClass('headerstyle3');
/* Header Style 2 End */
To enable Header Style 3 you have to open switcher-custom.js (assets/js/switcher-custom.js) file and remove comments for Header Style 2
as shown in below
/* Header Style 3 Start */
// $('body').addClass('headerstyle3');
// $('body').removeClass('headerstyle2');
// $('body').removeClass('headerstyle1');
/* Header Style 3 End */
Header Style 2
as shown below
/* Header Style 3 Start */
$('body').addClass('headerstyle3');
$('body').removeClass('headerstyle2');
$('body').removeClass('headerstyle1');
/* Header Style 3 End */
To enable Default Menu you have to open switcher-custom.js (assets/js/switcher-custom.js) file and remove comments for default-menu
as shown in below
/* Default Menu Start */
// $('body').addClass('default-menu');
/* Default Menu End */
default-menu
as shown below
/* Default Menu Start */
$('body').addClass('default-menu');
/* Default Menu End */
To enable Menu Style 1 you have to open switcher-custom.js (assets/js/switcher-custom.js) file and remove comments for Menu Style 1
as shown in below
/* Menu Style 1 Start */
// $('body').addClass('menu-style1');
/* Menu Style 1 End */
Menu Style 1
as shown below
/* Menu Style 1 Start */
$('body').addClass('menu-style1');
/* Menu Style 1 End */
To enable Menu Style 2 you have to open switcher-custom.js (assets/js/switcher-custom.js) file and remove comments for Menu Style 2
as shown in below
/* Menu Style 2 Start */
// $('body').addClass('menu-style2');
/* Menu Style 2 End */
Menu Style 2
as shown below
/* Menu Style 2 Start */
$('body').addClass('menu-style2');
/* Menu Style 2 End */
Note:- The switcher.html pages are displayed in pages in web in dashboard
To enable the switcher then you must have to place below HTML, CSS, JS in your html page.