FAQS

Gulp Related

How to use project without Scss & Gulp ?

If you don't want to use scss files, if you want to use only css files please follow below steps.
Step 1 :

If you don't want to use scss files,you are in no need of gulp and other related files & folders so please remove below shown files

Html/src folder
Html/dist/assets/css/icons.min.css.map file
Html/dist/assets/css/styles.min.css.map file
Html/gulpfile.js file
Html/package-lock.json file
Html/package.json file
Html/node_modules folder
Step 2 :

Remove scss folder in dist folder Path:Html/dist/assets/scss

You can simply use dist folder with only css, or can use by renaming it😊.

General Style

How to Change Font Family ?

Step 1:

Go To style.scss (src/assets/scss/styles.scss )

if you want to change another font-family Go to the site Google Fonts And Select One font Family and import in to styles.scss file

How to Select font Family

Example:

Step 2:

And paste Your Selected font-family in style.scss

Example:

Step 3:

And add the Your Selected font-family in _variables.scss(src/assets/scss/_variables.scss)

Example:

--default-font-family:    							'IBM Plex Sans', sans-serif;
		
	

How to change Menu icons ?

By default menu icons are Feather Icons if you want to change icons please follow below steps
Step 1 :

To change Menu icons, open sidebar.html page Path:src/html/partials/sidebar.html 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

	
		
			
		

How to Change Logo ?

Go To "src/assets/images/brand-logos" 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 Remove LocalStorage(cookie)

How to Remove LocalStorage (cookie)?

Disabling Switcher

How To Disable Switcher In All Pages ?

Step1:

Open header.html file html/partials/header.html

To remove switcher icons remove below code shown in header.html file


 
 <li class="header-element">
	<!-- Start::header-link|switcher-icon -->
	<a href="javascript:void(0);" class="header-link switcher-icon" data-bs-toggle="offcanvas" data-bs-target="#switcher-canvas">
		< i class="fe fe-settings header-link-icon w-100"></i>
	</a>
	<!-- End::header-link|switcher-icon -->
</li>



								
Step2:

After removing code in header.html page remove switcher.html partial link shown below in every html page


<!-- include switcher.html"-->
			
Step3:

After removing switcher partial in every page also remove custom_switcherjs.html partial ini every html page



<!-- include custom_switcherjs.html"-->
			
Step4:

Remove main.js link present in mainhead.html Path:html/partials/mainhead.html as show below



<script src="../assets/js/main.js"></script>
			
Step5:

Finally remove code in between comments /* for theme primary */ & /* for theme background */ in custom.js file Path:assets/js/custom.js



/* for theme primary */
Remove Code In Between
/* for theme primary */

/* for theme background */
Remove Code In Between
/* for theme background */