What's your biggest current challenge? Have your say in Community Polls along the right column.

Re: How to bold a specific menu item?

How can I bold a specific footer menu item?

tschris
Tourist
10 0 3

Hi, I'd like to bold one specific item in one of my footer menus, specifically the one that says "Wholesale Login"

 

Is this possible and/or does anyone have any advice on how to proceed? I'm using the Boost theme.

 

Thanks!snip11.PNG

Replies 7 (7)

DelightCart
Shopify Partner
1264 83 157

@tschris Please send me store url.

Delight Cart - It's time to turn your visitors into loyal shoppers! 

Delight Loyalty - Increase repeat sales quickly and build lifelong customers loyalty.
tschris
Tourist
10 0 3
themehelper
Excursionist
15 3 4

@tschris 
Add this code at the bottom of the style.css file.

navigation:nth-child(2) ul li:nth-child(5) a {
    font-weight: bolder !important;
}

Thank You.

GemPages
Shopify Partner
5625 1262 1254

Hello @tschris 

Can you give me your Store URL( with pass if your store password is enabled) so I can check it for you?

Kind & Best regards,
GemPages Support Team

GemPages - Build any high-converting store pages for any business


- If you find my reply helpful, please hit Like and Mark as Solution
- Get connected: App Store | Blog | Community | Help Center
tschris
Tourist
10 0 3

Heya, here you go! www.turtlessoup.com

GemPages
Shopify Partner
5625 1262 1254

Hello @tschris 

 

You can follow these steps: 
1. Go to Online Store->Theme->Edit code

GemPages_0-1670482406893.png

2. Open your theme.liquid file, paste the below code before </body>

GemPages_1-1670482430881.png

<style>
.footer-column .footer-navigation:nth-child(2) ul li:nth-child(5) a {
    font-weight: bolder !important;
}
</style>

I hope the above is useful to you.


Kind & Best regards, 
GemPages Support Team

GemPages - Build any high-converting store pages for any business


- If you find my reply helpful, please hit Like and Mark as Solution
- Get connected: App Store | Blog | Community | Help Center
tschris
Tourist
10 0 3

This worked, thank you!