Border on mobile nav items

Hi, how do I change the border color around each nav item on my mobile menus?

Hi,

The Menu module has a “Separators” option where you can choose the color of the border which separates each menu item.

If you want to do this on the mobile menu only, you can use the CSS below.

@media(max-width: 768px) {
  .fl-module-menu .fl-module-content .fl-menu nav li {
    border-color: green;
  }
}

Replace the border-color value with your preferred color.