Logo Settings

The Logo can be found in the Header – .header. Replace "logo.png" with your own logo image.

<a class="navbar-brand" href="index.html">
   <img class="img-fluid" src="images/logo-dark.png" alt="logo">
</a>

How to change logo height?

You can set the height according to your logo type and your requirement.

CSS

To set logo height open css/style.css file and change height value in .navbar-brand img class, default value of logo height is 42px.
For responsive logo height open css/style.css file and change height value in .navbar-brand img class in the 991 media query, the default value of logo height in responsive is 42px.

SCSS

To set logo height open scss/header.scss file and change height value in .navbar-brand img class, default value of logo height is 42px.
For responsive logo height open scss/responsive.scss file and change height value in .navbar-brand img class in the 991 media query, the default value of logo height in responsive is 42px.
If you change logo height then header height will automatically increase and the menu will set vertically center.

Suggest Edit