MENU PREVENTING WRAP

Utilize more of the empty space on either side of the menu options so that it doesn't wrap onto a seond line

add this code to prevent extra space

In custom.css file

#navbar-desktop ul.nav {
  flex-wrap: nowrap;
}

Last updated