I want some space between the navbar items
I know I can put them in spacing, the problem is I want the background of the header instead of the background of the navbar.
Just like they were separate buttons to click them.
I managed to do that by adding a border of the same color as the header background to the li.
.main-navigation {
margin-top:10px;
}
.main-navigation li.menu-item {
border-style: solid;
border-width: 5px;
border-color: #ffffff;
}
Is there any other … better way to do it ?