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 Select One font Family and import In to style.css file
And paste Your Selected font-family in _fonts.scss
And add the Your Selected font-family in _bootstrap-styles.scss(assets/scss/bootstrap/_bootstrap-styles.scss)
body {
margin: 0;
font-family: "Roboto", sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 1.5;
color: $color;
text-align: left;
background-color: $background;
}
Note : After Changing font you must run gulp command i.e, gulp watch
. Refer gulp page for more gulp commands click here.
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.
open index.html path:(src/index.html)
. and
class 'horizontalmenu'
to enable horizontalmenu version as shown in below
<body class="horizontalmenu">
...
<body>
open index.html path:(src/index.html)
. and
class 'horizontalmenu-hover'
to enable horizontalmenu-hover version as shown in below
<body class="horizontalmenu-hover">
...
<body>
open switcher.js path:(src/app/shared/layout-components/switcher/switcher.component.ts)
Place below code in ngOnInit(){}. file nowrap is enabled by
default,If you want wrap then add class flex-wrap to side-menu element.
document.querySelector('.horizontal .side-menu').classList.add('flex-wrap')
Example:
Simply you can change noWrap
with wrap
to change the style of
Horizontal or Horizontal Hover Menus
open index.html path:(src/index.html)
. and
class 'rtl'
to enable RTL version as shown in below
<body class="rtl">
...
<body>
open index.html path:(src/index.html)
. and
class 'dark-theme'
to enable Dark theme version as shown in
below
<body class="dark-theme">
...
<body>
open index.html path:(src/index.html)
. and
class 'transparent-theme'
to enable transparent theme version as shown in
below
<body class="transparent-theme">
...
<body>
open index.html path:(src/index.html)
. and
class 'color-header'
to enable Color header version as
shown in below
<body class="color-header">
...
<body>
open index.html path:(src/index.html)
. and
class 'header-dark'
to enable Dark header version as shown
in
below
<body class="header-dark">
...
<body>
open index.html path:(src/index.html)
. and
class 'header-light'
to enable Header ight version as
shown in
below
<body class="header-light">
...
<body>
open index.html path:(src/index.html)
. and
class 'light-menu'
to enable Light menu version as shown in below
<body class="light-menu">
...
<body>
open index.html path:(src/index.html)
. and
class 'color-menu'
to enable Color menu version as shown in below
<body class="color-menu">
...
<body>
open index.html path:(src/index.html)
. and
class 'dark-menu'
to enable Dark menu version as shown in below
<body class="dark-menu">
...
<body>
open index.html path:(src/index.html)
. and
class 'layout-fullwidth'
to enable layout-fullwidth version as shown in below
<body class="layout-fullwidth">
...
<body>
open index.html path:(src/index.html)
. and
class 'layout-boxed'
to enable layout-boxed version as shown in below
<body class="layout-boxed">
...
<body>
open index.html path:(src/index.html)
. and
class 'scrollable-layout'
to enable scrollable-layout version as shown in below
<body class="scrollable-layout">
...
<body>
open index.html path:(src/index.html)
. and
class 'fixed-layout'
to enable fixed-layout version as shown in below
<body class="fixed-layout">
...
<body>
Follow the below image instructions.
Example:
Simply you can change noWrap
with wrap
to change the style of
Horizontal or Horizontal Hover Menus