How to add vertical lines between menu items in the header?

How to add vertical lines between menu items in the header?

JamesW1
Visitor
3 0 0

how do i add lines between home, catalog etc

 
i want it to look like
 
Home | Catalog | Contact
 
rather than
 
Home Catalog Contact
 
 
cheers.
Replies 5 (5)

Zqdo
Shopify Partner
803 32 64

Glad to help. Can you share the link to your website?

banned
JamesW1
Visitor
3 0 0
Zqdo
Shopify Partner
803 32 64

Ok, thanks. Let's get started. How comfortable are you with HTML and CSS?

banned
JamesW1
Visitor
3 0 0

I’m sure I can learn it. I’ve used css to change the cart emblem and html back in school so may be alright. Cheers

Zqdo
Shopify Partner
803 32 64

Ok. Try this:

 

Go to your theme customizer, and click on your menu.

 

Go to where it says "Custom CSS". Try this code:

 

.list-menu__item{
border-left: 1px solid #ffffff;
}

.list-menu__item::first-of-type{
border-left: none;
}

 

Does this work?

banned