Site logo

Archived topic

Small right and left border in menu

1 reply · Started by Anders Nielsen on February 7, 2021

Viewing posts 1–2 of 2

Hi

I'm trying to get a small white border in the secondary menu. So each menu element has a border to the right and to the left - separating the items from each other.

How do I do that with css?

Hi there,

try this CSS:

@media(min-width: 769px) {
  .secondary-navigation li a {
    border-right: 1px solid #fff;
  }
  .secondary-navigation li:first-child a {
    border-left: 1px solid #fff;
  }
}
This archived topic is closed to new replies.