Site logo

Archived topic

Left side navigation with centered menu vertically

3 replies · Started by Alexander on February 9, 2021

Viewing posts 1–4 of 4

Hi! Is it really possible to adjust the menu position to be floating in absolute middle vertically in my case?

Hi there,

go to Customizer > Additional CSS and replace this CSS:

.nav-float-right .inside-header .main-navigation {
  order: 2;
  margin-top: 150px;
  margin-bottom:50px
}

with:

.inside-header {
  height: 100%;
}
.nav-float-right .inside-header .main-navigation {
  order: 2;
  margin-top: auto;
  margin-bottom: auto;
  position: relative;
  top: -60px; /* Offset height of logo and padding */
}

Thumbs up, David! ;-)
Thanks for your great support!

You're welcome

This archived topic is closed to new replies.