How can I change the color of a specific tab on my website's main menu?

Solved

How can I change the color of a specific tab on my website's main menu?

rsanthony
Visitor
2 0 0

Help! I need help with changing the color of a tab on the main menu of my website. This is my website: www.TillieRo.com. I'm just wanting to change the background of one tab, but not the others. The tab color I'm wanting to change is "For The Girls". I looked up other questions/solutions but nothing is working. Thanks in advance!

Accepted Solution (1)

GemPages
Shopify Partner
5625 1262 1264

This is an accepted solution.

Hello @rsanthony 

 

It's GemPages support team and glad to support you today.

I would like to give you a solution to support you.

1. Go to Online Store -> Theme -> Edit code.

2. Open your theme.liquid theme file.

3. Paste the below code before </body>:

 

<style>
  sticky-header .list-menu > li:last-child a,
  sticky-header .list-menu > li:last-child a{
     background: pink;
  }
</style>

 

Hope my solution can work and support 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

View solution in original post

Replies 2 (2)

GemPages
Shopify Partner
5625 1262 1264

This is an accepted solution.

Hello @rsanthony 

 

It's GemPages support team and glad to support you today.

I would like to give you a solution to support you.

1. Go to Online Store -> Theme -> Edit code.

2. Open your theme.liquid theme file.

3. Paste the below code before </body>:

 

<style>
  sticky-header .list-menu > li:last-child a,
  sticky-header .list-menu > li:last-child a{
     background: pink;
  }
</style>

 

Hope my solution can work and support 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
rsanthony
Visitor
2 0 0

Thank you so much! That worked perfectly.