Solved

How to change text color of a specific navigation menu with CSS?

NG_01
Tourist
3 0 1

Hi everyone!
I need help for CSS coding on Cascade Theme -> I would like to change the text color of only one of my main navigation menu to highlight it.

The last one "Petits prix" navigation menu should appear in the #db2b4e color rather than black.
I tried to quibble with the code but nothing to do, the color does not change. I'm having trouble identifying my menu or placing my code incorrectly on my CSS stylesheet.

Thank you for your help!

 

Capture d’écran 2021-08-03 à 23.57.18.png

 

 

Accepted Solution (1)

dmwwebartisan
Shopify Partner
12289 2547 3698

This is an accepted solution.

@NG_01 

Please add the following code at the bottom of your assets/theme.min.css file.

.site-nav li a[href="/collections/petits-prix"] {
    color: #db2b4e;
}

Hope this works.

Thanks!

If helpful then please Like and Accept Solution | Email: dmw.webartisan@gmail.com |  Instagram: @dmw.webartisan
Check here PageFly App to customize your pages | #1 Product Filter & Search app on Shopify | The most powerful Shopify page builder app

View solution in original post

Replies 7 (7)

Muhammad_Ali_S
Shopify Partner
664 121 183

Hey @NG_01
Are you able to provide your store URL? I need to take a look at the store before being able to offer any help.

 

Ali Shahzad | Designer | Developer
- Was my reply helpful? Click Like and Accepted Solution to let me know!
- Feel Free to Contact | Whatsapp +92 3486775142
NG_01
Tourist
3 0 1

Hey @Muhammad_Ali_S thank you for your reply!
Here is the store URL : https://lecyclismeaufeminin.com/

Thanks!

dmwwebartisan
Shopify Partner
12289 2547 3698

This is an accepted solution.

@NG_01 

Please add the following code at the bottom of your assets/theme.min.css file.

.site-nav li a[href="/collections/petits-prix"] {
    color: #db2b4e;
}

Hope this works.

Thanks!

If helpful then please Like and Accept Solution | Email: dmw.webartisan@gmail.com |  Instagram: @dmw.webartisan
Check here PageFly App to customize your pages | #1 Product Filter & Search app on Shopify | The most powerful Shopify page builder app
NG_01
Tourist
3 0 1

Thank you so much @dmwwebartisan !! It works! 

BoveSpring
Shopify Partner
18 0 2

Hi @dmwwebartisan,

Could you also help for my URL https://bove.co/ (Empire theme)?

I've been trying to get the menu "SALE" font into all red #ff0000.

Screenshot 2021-10-29 192107.png

dmwwebartisan
Shopify Partner
12289 2547 3698

@BoveSpring 

Please add the following code at the bottom of your assets/theme.scss.liquid file.

.site-navigation .navmenu-item-parent, .site-navigation .navmenu-id-sale .navmenu-link-parent {
    color:#ff0000 !important;
}

Thanks!

If helpful then please Like and Accept Solution | Email: dmw.webartisan@gmail.com |  Instagram: @dmw.webartisan
Check here PageFly App to customize your pages | #1 Product Filter & Search app on Shopify | The most powerful Shopify page builder app
BoveSpring
Shopify Partner
18 0 2

@dmwwebartisan - the code works like a charm. Thank you!