Solved

Can I add a border to a single menu item in the Venue theme?

mvdg1990
Tourist
12 0 2

Hi, I've purchased the Venue theme and am looking for a way to put a border around only one item in the main menu through the code editor. Could someone help me? Thanks.

Accepted Solution (1)
iCart_App
Shopify Partner
479 57 103

This is an accepted solution.

Hello @mvdg1990,

Thanks for sharing the URL and sorry for the delay in replying back.

Here is the CSS, please add this code in the theme-critical.css file at the bottom:

.header.header--center .primary-nav__item:nth-child(10) {
    border: 3px solid red;
}

Change the color and thickness of the border as you required.

iCart Cart Drawer Cart Upsell App


- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution!
- To learn more visit www.identixweb.com

View solution in original post

Replies 5 (5)

iCart_App
Shopify Partner
479 57 103

Hey @mvdg1990,

Can you please send me the store URL and screenshot of the page where you required the changes?

iCart Cart Drawer Cart Upsell App


- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution!
- To learn more visit www.identixweb.com
mvdg1990
Tourist
12 0 2

Hi, thanks for your reply. The shop is onhttps://shop.mojokite.com  I would like to put a border around the "Contact" menu item in the header. I'm comfortable editing the code, just can't find where... Hope you can help me!!! Thanks.

mvdg1990
Tourist
12 0 2

Hi @iCart_App , did you have any ideas in the end to help me? 

iCart_App
Shopify Partner
479 57 103

This is an accepted solution.

Hello @mvdg1990,

Thanks for sharing the URL and sorry for the delay in replying back.

Here is the CSS, please add this code in the theme-critical.css file at the bottom:

.header.header--center .primary-nav__item:nth-child(10) {
    border: 3px solid red;
}

Change the color and thickness of the border as you required.

iCart Cart Drawer Cart Upsell App


- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution!
- To learn more visit www.identixweb.com
mvdg1990
Tourist
12 0 2

Thank you so much @iCart_App