FAQ'S
General Style

How to Change Font Style ?

Step 1:

Go To _variables.scss (assets/scss/_variables.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

How to Select font Family

Example:

Step 2:

And paste Your Selected font-family in _variables.scss i.e (root:-assets/scss/_variables.scss)

Example:

Before : @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

After : @import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900");

Step 3:

And add the Your Selected font-family in _custom.scss(assets/scss/bootstrap/_custom.scss)

Example:



													body {
														margin: 0;
														font-family: 'Poppins', sans-serif;
														font-size: 0.81568rem;
														font-weight: 400;
														line-height: 1.5;
														color: #{$default-color};
														text-align: start;
														background-color: #{$background} ;
													}
	

How to Change Logo ?

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.

LTR Version to RTL Version

How to Enable RTL version?

open custom-switcher.js path:(rootFolder\src\App.tsx)file and remove comments for html.setAttribute("dir" , "rtl") to enable RTL version.

//LTR to RTL
if (!localStorage.getItem("zemrtl")) {
	// html.setAttribute("dir" , "rtl") // for rtl version
}
Side Menu Styles

How to Enable Boxed-Layout?

open custom-switcher.js path:(rootFolder\src\App.tsx)file and remove comments for html.setAttribute("data-width" , "boxed") to enable layout-boxed style

//Boxed styles
if (!localStorage.getItem("zemboxed")) {
// html.setAttribute("data-width" , "boxed") // for boxed style
}

How to Enable Scrollable-Layout?

open custom-switcher.js path:(rootFolder\src\App.tsx) file and remove comments for html.setAttribute("data-position" , "scrollable") to enable scrollable-layout style

//Scrollabel styles
if (!localStorage.getItem("zemscrollable")) {
	// html.setAttribute("data-position" , "scrollable") // for scrollable style
}
Theme Styles

How to Enable Theme Styles?

open custom-switcher.js path:(rootFolder\src\App.tsx) file and remove comments for html.setAttribute('data-theme-color', 'default') and any data-theme-color to enable Theme style


// Theme Color Styles
if (!localStorage.getItem("zemthemecolors")) {
		// html.setAttribute('data-theme-color', 'default');
		// html.setAttribute('data-theme-color', 'light');
		// html.setAttribute('data-theme-color', 'dark');
		// html.setAttribute('data-theme-color', 'glassy');
} 
Menu Image Styles

How to Enable Menu Images?

open custom-switcher.js path:(rootFolder\src\App.tsx) file and remove comments for html.setAttribute('data-menuimg', 'bg-img1') and any data-menuimg to enable Menu Image


// Menu Image Styles
if (!localStorage.getItem("zemmenubgimg")) {
		// html.setAttribute('data-menuimg', 'bg-img1');
		// html.setAttribute('data-menuimg', 'bg-img2');
		// html.setAttribute('data-menuimg', 'bg-img3');
		// html.setAttribute('data-menuimg', 'bg-img4');
} 
Vertical Menu Styles

How to Enable VERTICAL MENU Styles?

open custom-switcher.js path:(rootFolder\src\App.tsx) file and remove comments for html.setAttribute("data-layout" , "vertical") and any data-vertical-style to enable Verticalmenu style

//Menu Layout
if (!localStorage.getItem("zemlayout")) {
	// html.setAttribute("data-layout" , "vertical") // for Vertical layout
	// html.setAttribute("data-layout" , "horizontal") // for horizontal layout
}
//Verticalmenu Layout Styles
if (!localStorage.getItem("zemverticalstyles")) {
	// html.setAttribute("data-vertical-style" , "default") // for Vertical default style
	// html.setAttribute("data-vertical-style" , "closed") // for Vertical closed style
	// html.setAttribute("data-vertical-style" , "icontext") // for Vertical icontext style
	// html.setAttribute("data-vertical-style" , "overlay") // for Vertical overlay style
	// html.setAttribute("data-vertical-style" , "hover") // for Vertical hover style
	// html.setAttribute("data-vertical-style" , "hover1") // for Vertical hover1 style
	// html.setAttribute("data-vertical-style" , "doublemenu") // for Vertical doublemenu style
}
Horizontal Click & Horizontal Hover styles

How to Enable Horizontal layout

open custom-switcher.js path:(rootFolder\src\App.tsx) file and remove comments for html.setAttribute("data-layout" , "horizontal") andany data-hor-style to enable Horizontal layout style

//Menu Layout
if (!localStorage.getItem("zemlayout")) {
	// html.setAttribute("data-layout" , "vertical") // for Vertical layout
	// html.setAttribute("data-layout" , "horizontal") // for horizontal layout
}

//horizontalmenu Layout Styles
if (!localStorage.getItem("zemlayout") === "horizontal") {
	// html.setAttribute("data-hor-style" , "hor-click") // for horizontal click style
	// html.setAttribute("data-hor-style" , "hor-hover") // for horizontal hover style
}

Note:-when horizontal layout is in active all the data-vertical-style will not be in active

Horizontal Centerlogo styles

How to Enable Horizontal Centerlogo

Theme Colors

How to Change Complete theme colors ?

Please follow the below steps to change complete theme colors

To change complete theme colors you have to open _variables.scss file

Rootpath : _variables.scss (assets/scss/_variables.scss )

To customize the theme colors. change colors in root element :

::root {
	--background: rgba(255,255,255,0.1);
	--color: #b0bbc7;
	--color2: rgba(255, 255, 255, 0.75);
	--primary-rgb: 77, 238, 234;
	--background-rgb: 18, 55, 61;
	--primary-bg-color: rgb(var(--primary-rgb));
	--primary-bg-hover: rgb(var(--primary-rgb));
	--primary-bg-border: rgb(var(--primary-rgb));
	----------------
	}

Note : After Changing color you must run gulp command's . Refer gulp page for more gulp commands click here.

Local Storage

How to clear LocalStorage (cookie)?

Menu Icons

Which Icons Are Used For Sidemenu ?

Ionic Icons svgs are used for sidemenu

you can find these icons in the link :- https://ionicons.com/