FAQS
General Style

How to Change Font Style ?

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 in the from remix icon if you want to change the icons please follow below steps
Step 1 :

To change Menu icons, open nav.js page Path: src\lib\components\layout-components\sidebar\nav.js and go through app-sidebar section, in that section you will find icontag, there you can replace previous icon with your icon. Example as shown in below

	
		
			
		

How to Change Logo ?

Go To "static/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.

Disabling Switcher

How To Disable Switcher In All Pages ?

Step1:

Open Switcher.svelte component src\lib\components\layout-components\switcher\Switcher.svelte

To remove switcher section as shown below.


<Button
	color=""
	on:click={() => (endOpen = !endOpen)}
	href="#!"
	class="header-link switcher-icon"
  >
	<i class="bx bx-cog header-link-icon">
</Button>
Step2:

Remove the switcher component from the main layout follow the path $libs\components\header/Header.svelte


import Switcher from "../switcher/Switcher.svelte";
<div class="header-element">
<!-- Start::header-link|switcher-icon -->
    <Switcher />
<!-- End::header-link|switcher-icon -->
</div>
			
Step3:

Now remove the switcher component and switcher file from the root folder, follow the path Switcher component $lib/components/layout-components/switcher/

Note : After completing above steps please run sass command the command to update dist folder.(npm run sass)