How to Add Menu Separators to Our Themes

If you want to put a vertical separator between your menu items try using this custom css. Change color hexcode as needed.

#navigation .menu > li:after {
 content: "|";
 color: #000;
 padding-left: 1em;
}
#navigation .menu > li:last-child::after {
display: none;
}
Previous Post

How to change the header search background color

Next Post

How To Hide Date, Author, Category, Comments and More

Leave a Reply

Your email address will not be published. Required fields are marked *