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;
padding: 0 !important;
font-size: 14px;
font-weight: 400;
line-height: 1.5;
color: $color;
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 custom-switcher.js (assets/js/custom-switcher.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 custom-switcher.js (assets/js/custom-switcher.js) file and remove comments for dark-theme
as shown in below
// Dark Theme Start //
// $('body').addClass('dark-mode');
// Dark Theme End //
dark-mode
as shown below
// Dark Theme Start //
$('body').addClass('dark-mode');
// Dark Theme End //
To enable Light Theme you have to open custom-switcher.js(assets/js/custom-switcher.js) file and remove comments for light-theme
as shown in below
// Light Theme Start //
// $('body').addClass('light-mode');
// Light Theme End //
light-mode
as shown below
// Light Theme Start //
$('body').addClass('light-mode');
// Light Theme End //
To enable Transparent Theme you have to open custom-switcher.js(assets/js/custom-switcher.js) file and remove comments for transparent-theme
as shown in below
// Transparent Theme Start //
// $('body').addClass('transparent-mode');
// Transparent Theme End //
light-mode
as shown below
// Transparent Theme Start //
$('body').addClass('transparent-mode');
// Transparent Theme End //
Note:- The switcher.html and empty.html pages are displayed in pages in web in dashboard template.
Open HTML file in Script Section change your custom-switcher.js to custom-switcher1.js style link in html style link in dashboard . check below Image
To enable the switcher then you must have to place below HTML, CSS, JS in your html page.
Below HTML is in empty.html file