Remove space between menu items

Hi, how I can remove the spaces between menu items?
http://alvarobeamudcortes.dnsalias.com

Hi Ishobox,

Thanks for getting in touch! Apologies, but which spaces are you referring to in your menu items?

Best,
Billy

Hi, I would like to remove the space between the bottom border of the menu items.

Thanks.

Hi Ishobox,

You should be able to remove the padding using two separate options in the Customizer. You can find using the following:

Customizing > Header > Header Layout > Padding (px)
Customizing > Header > Nav Layout > Nav Item Spacing (px)

Thanks,
Danny

Hi Dani, I remove the space and padding in menu items but the space between the bottom border remains.
II would like is to keep the space between the menu items, and remove the small space in bottom borders.

Thanks,
Manuel.

Hey Manuel,

Can you try the CSS snippet below and see if it’s what you’re looking for?

@media (min-width: 768px) {
  .fl-page-nav-centered ul.navbar-nav > li {
    margin-left: -4px;
  }
  .fl-page-nav-centered ul.navbar-nav > li:first-child {
    margin-left: 0px;
  }
}

Ben

Hi Ben, it works like a charm!

Thank you,
Manuel.

No worries at all, Manuel! Glad we could help. Enjoy BB! :slight_smile:

Ben