To add separators between each menu item on desktop, like this.
You can use this code to Custom CSS box.
If code doesn’t work, you can comment below, message or email me.
div.header-nav-item:not(:last-child) {
position: relative;
padding-right: 2.8vw;
}
.header-nav-item:not(:last-child)::after {
content: "";
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 0.5px;
height: 16px;
background-color: #000;
}
To change separator color, you can change this line.