FAQS

1) How to Change Font Style ?

Step 1:

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 Slect 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 _fonts.scss

Example:

@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-styles.scss(assets/scss/custom/_custom-styles.scss)

Example:



											body {
												font-family: "Poppins", sans-serif;
												direction: ltr;
												-webkit-font-smoothing: antialiased;
												-moz-osx-font-smoothing: grayscale;
												-webkit-tap-highlight-color: transparent;
												-webkit-text-size-adjust: none;
												-ms-touch-action: manipulation;
												touch-action: manipulation;
												-webkit-font-feature-settings: "liga" 0;
												font-feature-settings: "liga" 0;
												height: 100%;
												overflow-y: scroll;
												position: relative;
										}
	
	

2) 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.

3) How to Enable Darktheme?

open custom-switcher.js path:(assets/js/custom-switcher.js) file and remove comments to enable dark-theme style as shown in below


			//Dark Theme Style
			if (!localStorage.getItem("spanerdarktheme")) {
				// html.setAttribute("data-theme-color" , "dark") // for dark theme
			}
Remove the comments to enable dark-theme as shown below

			//Dark Theme Style
			if (!localStorage.getItem("spanerdarktheme")) {
			 html.setAttribute("data-theme-color" , "dark") // for dark theme
			}

4) How to Enable Color-header?

open custom-switcher.js path:(assets/js/custom-switcher.js) file and remove comments to enable color-header style as shown in below


			//Header Styles
			if (!localStorage.getItem("spanerHeader")) {
				// html.setAttribute("data-header-style" , "light") // for light header style
				// html.setAttribute("data-header-style" , "dark") // for dark header style
				// html.setAttribute("data-header-style" , "color") // for color header style
				// html.setAttribute("data-header-style" , "gradient") // for gradient header style
			}
Remove the comments to enable color-header as shown below

			//Header Styles
			if (!localStorage.getItem("spanerHeader")) {
				// html.setAttribute("data-header-style" , "light") // for light header style
				// html.setAttribute("data-header-style" , "dark") // for dark header style
					html.setAttribute("data-header-style" , "color") // for color header style
				// html.setAttribute("data-header-style" , "gradient") // for gradient header style
			}

5) How to Enable Dark-header?

open custom-switcher.js path:(assets/js/custom-switcher.js) file and remove comments to enable dark-header style as shown in below


			//Header Styles
			if (!localStorage.getItem("spanerHeader")) {
				// html.setAttribute("data-header-style" , "light") // for light header style
				// html.setAttribute("data-header-style" , "dark") // for dark header style
				// html.setAttribute("data-header-style" , "color") // for color header style
				// html.setAttribute("data-header-style" , "gradient") // for gradient header style
			}
Remove the comments to enable dark-header as shown below

			//Header Styles
			if (!localStorage.getItem("spanerHeader")) {
				// html.setAttribute("data-header-style" , "light") // for light header style
					html.setAttribute("data-header-style" , "dark") // for dark header style
				// html.setAttribute("data-header-style" , "color") // for color header style
				// html.setAttribute("data-header-style" , "gradient") // for gradient header style
			}

6) How to Enable Light-header?

open custom-switcher.js path:(assets/js/custom-switcher.js) file and remove comments to enable light-header style as shown in below


		//Header Styles
		if (!localStorage.getItem("spanerHeader")) {
			// html.setAttribute("data-header-style" , "light") // for light header style
			// html.setAttribute("data-header-style" , "dark") // for dark header style
			// html.setAttribute("data-header-style" , "color") // for color header style
			// html.setAttribute("data-header-style" , "gradient") // for gradient header style
		}
Remove the comments to enable light-header as shown below

		//Header Styles
		if (!localStorage.getItem("spanerHeader")) {
				html.setAttribute("data-header-style" , "light") // for light header style
			// html.setAttribute("data-header-style" , "dark") // for dark header style
			// html.setAttribute("data-header-style" , "color") // for color header style
			// html.setAttribute("data-header-style" , "gradient") // for gradient header style
		}

7) How to Enable Gradient-header?

open custom-switcher.js path:(assets/js/custom-switcher.js) file and remove comments to enable gradient-header style as shown in below


		//Header Styles
		if (!localStorage.getItem("spanerHeader")) {
			// html.setAttribute("data-header-style" , "light") // for light header style
			// html.setAttribute("data-header-style" , "dark") // for dark header style
			// html.setAttribute("data-header-style" , "color") // for color header style
			// html.setAttribute("data-header-style" , "gradient") // for gradient header style
		}
Remove the comments to enable gradient-header as shown below

		//Header Styles
		if (!localStorage.getItem("spanerHeader")) {
			// html.setAttribute("data-header-style" , "light") // for light header style
			// html.setAttribute("data-header-style" , "dark") // for dark header style
			// html.setAttribute("data-header-style" , "color") // for color header style
				html.setAttribute("data-header-style" , "gradient") // for gradient header style
		}

8) How to Enable Light Menu?

open custom-switcher.js path:(assets/js/custom-switcher.js) file and remove comments to enable light-menu style as shown in below


		//Menu Styles
		if (!localStorage.getItem("spanerMenu")) {
			// html.setAttribute("data-menu-style" , "light") // for light menu style
			// html.setAttribute("data-menu-style", "dark") // for dark menu style
			// html.setAttribute("data-menu-style" , "color") // for color menu style
			// html.setAttribute("data-menu-style" , "gradient") // for gradient menu style
		}
Remove the comments to enable light-menu as shown below

		//Menu Styles
		if (!localStorage.getItem("spanerMenu")) {
				html.setAttribute("data-menu-style" , "light") // for light menu style
			// html.setAttribute("data-menu-style", "dark") // for dark menu style
			// html.setAttribute("data-menu-style" , "color") // for color menu style
			// html.setAttribute("data-menu-style" , "gradient") // for gradient menu style
		}

9) How to Enable Color Menu?

open custom-switcher.js path:(assets/js/custom-switcher.js) file and remove comments to enable color-menu style as shown in below


		//Menu Styles
		if (!localStorage.getItem("spanerMenu")) {
			// html.setAttribute("data-menu-style" , "light") // for light menu style
			// html.setAttribute("data-menu-style", "dark") // for dark menu style
			// html.setAttribute("data-menu-style" , "color") // for color menu style
			// html.setAttribute("data-menu-style" , "gradient") // for gradient menu style
		}
Remove the comments to enable color-menu as shown below

		//Menu Styles
		if (!localStorage.getItem("spanerMenu")) {
			// html.setAttribute("data-menu-style" , "light") // for light menu style
			// html.setAttribute("data-menu-style", "dark") // for dark menu style
				html.setAttribute("data-menu-style" , "color") // for color menu style
			// html.setAttribute("data-menu-style" , "gradient") // for gradient menu style
		}

10) How to Enable Dark Menu?

open custom-switcher.js path:(assets/js/custom-switcher.js)file and remove comments to enable dark-menu style as shown in below


											//Menu Styles
											if (!localStorage.getItem("spanerMenu")) {
												// html.setAttribute("data-menu-style" , "light") // for light menu style
												// html.setAttribute("data-menu-style", "dark") // for dark menu style
												// html.setAttribute("data-menu-style" , "color") // for color menu style
												// html.setAttribute("data-menu-style" , "gradient") // for gradient menu style
											}
Remove the comments to enable dark-menu as shown below

											//Menu Styles
											if (!localStorage.getItem("spanerMenu")) {
												// html.setAttribute("data-menu-style" , "light") // for light menu style
													html.setAttribute("data-menu-style", "dark") // for dark menu style
												// html.setAttribute("data-menu-style" , "color") // for color menu style
												// html.setAttribute("data-menu-style" , "gradient") // for gradient menu style
											}

11) How to Enable Gradient Menu?

open custom-switcher.js path:(assets/js/custom-switcher.js)file and remove comments to enable gradient-menu style as shown in below


											//Menu Styles
											if (!localStorage.getItem("spanerMenu")) {
												// html.setAttribute("data-menu-style" , "light") // for light menu style
												// html.setAttribute("data-menu-style", "dark") // for dark menu style
												// html.setAttribute("data-menu-style" , "color") // for color menu style
												// html.setAttribute("data-menu-style" , "gradient") // for gradient menu style
											}
Remove the comments to enable gradient-menu as shown below

											//Menu Styles
											if (!localStorage.getItem("spanerMenu")) {
												// html.setAttribute("data-menu-style" , "light") // for light menu style
												// html.setAttribute("data-menu-style", "dark") // for dark menu style
												// html.setAttribute("data-menu-style" , "color") // for color menu style
													html.setAttribute("data-menu-style" , "gradient") // for gradient menu style
											}

12) How to Enable Boxed-Layout?

open custom-switcher.js path:(assets/js/custom-switcher.js)file and remove comments to enable layout-boxed style as shown in below


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

Remove the comments to enable layout-boxed as shown below


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

13) How to Enable Scrollable-Layout?

open custom-switcher.js path:(assets/js/custom-switcher.js) file and remove comments to enable scrollable-layout style as shown in below


//Scrollabel styles
if (!localStorage.getItem("spanerscrollable")) {
	// html.setAttribute("data-position" , "scrollable") // for scrollable style
}
Remove the comments to enable scrollable-layout as shown below

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

14) How to Enable Sidemenu-Icon-with Text?

open custom-switcher.js path:(assets/js/custom-switcher.js) file and remove comments to enable sidemenu-icontext style as shown in below


//IconText Layout Styles
if (!localStorage.getItem("spanerverticalstyles")) {
	// html.setAttribute("data-vertical-style" , "icontext") // for Vertical icontext style
	// textLayoutFn();
}
Remove the comments to enable sidemenu-icontext as shown below

//IconText Layout Styles
if (!localStorage.getItem("spanerverticalstyles")) {
	 html.setAttribute("data-vertical-style" , "icontext") // for Vertical icontext style
	 textLayoutFn();
}

15) How to Enable Closed-Menu?

open custom-switcher.js path:(assets/js/custom-switcher.js) file and remove comments to enable closed menu style as shown in below


		//Closed Layout Styles
		if (!localStorage.getItem("spanerverticalstyles")) {
			// html.setAttribute("data-vertical-style" , "closed") // for Vertical closed style
			// $('body').addClass('sidenav-toggled');
		}
Remove the comments to enable Closed Sidemenu as shown below

		//Closed Layout Styles
		if (!localStorage.getItem("spanerverticalstyles")) {
			html.setAttribute("data-vertical-style" , "closed") // for Vertical closed style
			$('body').addClass('sidenav-toggled');
		}

16) How to Enable Icon Overlay

open custom-switcher.js path:(assets/js/custom-switcher.js) file and remove comments to enable Icon Overlay style as shown in below



		//Overlay Layout Styles
		if (!localStorage.getItem("spanerverticalstyles")) {
			// html.setAttribute("data-vertical-style" , "overlay") // for Vertical overlay style
			// $('body').addClass('sidenav-toggled');
		}
Remove the comments to enable sideicon-menu as shown below


		//Overlay Layout Styles
		if (!localStorage.getItem("spanerverticalstyles")) {
			html.setAttribute("data-vertical-style" , "overlay") // for Vertical overlay style
			$('body').addClass('sidenav-toggled');
		}

17) How to Enable Hover Submenu

open custom-switcher.js path:(assets/js/custom-switcher.js) file and remove comments to enable Hover submenu style as shown in below



		//Hover Submenu Layout Styles
		if (!localStorage.getItem("spanerverticalstyles")) {
			// html.setAttribute("data-vertical-style" , "hover") // for Vertical hover style
			// hoverLayoutFn();
		}
Remove the comments to enable Hover Submenu as shown below


		//Hover Submenu Layout Styles
		if (!localStorage.getItem("spanerverticalstyles")) {
			html.setAttribute("data-vertical-style" , "hover") // for Vertical hover style
			hoverLayoutFn();
		}

18) How to Enable Hover Submenu Style1

open custom-switcher.js path:(assets/js/custom-switcher.js) file and remove comments to enable Hover submenu style1 style as shown in below



		//Hover Submenu1 Layout Styles
		if (!localStorage.getItem("spanerverticalstyles")) {
			// html.setAttribute("data-vertical-style" , "hover1") // for Vertical hover1 style
			// hoverLayoutFn();
		}
Remove the comments to enable Hover Submenu Style1 as shown below


		//Hover Submenu1 Layout Styles
		if (!localStorage.getItem("spanerverticalstyles")) {
			// html.setAttribute("data-vertical-style" , "hover1") // for Vertical hover1 style
			// hoverLayoutFn();
		}

19) How to Enable Double-menu

open custom-switcher.js path:(assets/js/custom-switcher.js) file and remove comments to enable Double-menu style as shown in below



		//Double Menu Layout Styles
		if (!localStorage.getItem("spanerverticalstyles")) {
			// html.setAttribute("data-vertical-style" , "doublemenu") // for Vertical doublemenu style
			// doubleLayoutFn();
		}
Remove the comments to enable Double-menu as shown below


		//Double Menu Layout Styles
		if (!localStorage.getItem("spanerverticalstyles")) {
			html.setAttribute("data-vertical-style" , "doublemenu") // for Vertical doublemenu style
			doubleLayoutFn();
		}

20) How to Enable Double-menu-tabs

open custom-switcher.js path:(assets/js/custom-switcher.js) file and remove comments to enable Double-menu-tabs style as shown in below



		//Double Menu Tabs Layout Styles
		if (!localStorage.getItem("spanerverticalstyles")) {
			// html.setAttribute("data-vertical-style" , "doublemenu-tabs") // for Vertical doublemenu-tabs style
			// doubleLayoutFn();
		}
Remove the comments to enable Double-menu-tabs as shown below


		//Double Menu Tabs Layout Styles
		if (!localStorage.getItem("spanerverticalstyles")) {
			html.setAttribute("data-vertical-style" , "doublemenu-tabs") // for Vertical doublemenu-tabs style
			doubleLayoutFn();
		}

21) How to Enable RTL version?

open custom-switcher.js path:(assets/js/custom-switcher.js)file . and remove comments to enable RTL version as shown in below


		//RTL
		if (!localStorage.getItem("spanerrtl")) {
			// html.setAttribute("dir" , "rtl") // for rtl version
		}
Remove the comments to enable Rtl Version as shown below

		//RTL
		if (!localStorage.getItem("spanerrtl")) {
			 html.setAttribute("dir" , "rtl") // for rtl version
		}

22) How to Enable Horizontalmenu?

open custom-switcher.js path:(assets/js/custom-switcher.js) file and remove comments to enable Horizontalmenu as shown in below


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

		//horizontalmenu Layout Styles
		if (!localStorage.getItem("spanerlayout") === "horizontal" || localStorage.getItem("spanerlayout") == null) {
			// html.setAttribute("data-hor-style" , "hor-click") // for horizontal click style
			// html.setAttribute("data-hor-style" , "hor-hover") // for horizontal hover style
		}
	
Remove the comments to enable horizontal as shown below

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

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

23) How to Enable Horizontal Hover layout

open custom-switcher.js path:(assets/js/custom-switcher.js) file and remove comments to enable Horizontal Hover layout style as shown in below


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

		//horizontalmenu Layout Styles
		if (!localStorage.getItem("spanerlayout") === "horizontal" || localStorage.getItem("spanerlayout") == null) {
			// html.setAttribute("data-hor-style" , "hor-click") // for horizontal click style
			// html.setAttribute("data-hor-style" , "hor-hover") // for horizontal hover style
		}
Remove the comments to enable Horizontal Hover layout as shown below

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

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

24) How to Enable Horizontal Centerlogo

open custom-switcher.js path:(assets/js/custom-switcher.js) file and remove comments to enable centerlogo-horizontal style as shown in below


		//Centerlogo For Horizontal
		if (!localStorage.getItem("spanercenterlogo")) {
			// html.setAttribute("data-logo" , "centerlogo") // for Horizontal Centerlogo
		}
Remove the comments to enable centerlogo-horizontal as shown below

		//Centerlogo For Horizontal
		if (!localStorage.getItem("spanercenterlogo")) {
			html.setAttribute("data-logo" , "centerlogo") // for Horizontal Centerlogo
		}

26) How to Enable Rtl and Dark-mode in landing-page

To enable RTL in landing-page:

open landing.js path:(assets/js/landing.js) file and remove comments for rtl to enable rtl style as shown in below


			//RTL
			if (!localStorage.getItem("spanerrtl")) {
				// html.setAttribute("dir" , "rtl") // for rtl version
			}
Remove the comments to enable rtl as shown below

			//RTL
			if (!localStorage.getItem("spanerrtl")) {
				html.setAttribute("dir" , "rtl") // for rtl version
			}
To enable Dark-mode in landing-page:

open landing.js path:(assets/js/landing.js) file and remove comments for dark-theme to enable dark-mode style as shown in below


			//Dark Theme Style
			if (!localStorage.getItem("spanerdarktheme")) {
				// html.setAttribute("data-theme-color" , "dark") // for dark theme
			}
Remove the comments to enable dark-theme as shown below

			//Dark Theme Style
			if (!localStorage.getItem("spanerdarktheme")) {
				html.setAttribute("data-theme-color" , "dark") // for dark theme
			}

27) How to clear LocalStorage (cookie)?

Theme Style