FAQS
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:    							'Roboto', sans-serif;
		
	

How to change Menu icons ?

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

To change Menu icons, open sidebar.html page Path:src\app\shared\services\navservice.ts and go through app-sidebar section, in that section you will find phosphor icons of menu in svg, 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 clear LocalStorage(cookie)

How to clear LocalStorage (cookie)?

Disabling Switcher

How To Disable Switcher In All Pages ?

Step1:

Open header.html file src\app\shared\componets\header\header.component.html

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


 <!-- Start::header-element -->
 <li class="header-element">
	<!-- Start::header-link|switcher-icon -->
	<a (click)="toggleSwitcher()" href="javascript:void(0);" class="header-link switcher-icon" data-bs-toggle="offcanvas" data-bs-target="#switcher-canvas">
		<i class="bi bi-gear header-link-icon border-0"></i>
	</a>
	<!-- End::header-link|switcher-icon -->
</div>


								

How To Remove Switcher In Landing Page ?

Step1:

Remove below shown code in head part of the landing.html file Path:src\app\components\page\landing\landing.component.html


														<button (click)="toggleSwitcher()"
														class="btn btn-icon btn-primary"
														data-bs-toggle="offcanvas"
														data-bs-target="#switcher-canvas">
														<i class="fe fe-settings align-middle">
														</button>