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

Need to change menu heading color

Solved

Need to change menu heading color

Cara_Circuit
Tourist
17 0 3

Hello, 

 

I can easily change the color of the text in my menu list, but I can't figure out how to change the color of the menu headings. Symmetry theme and the site is circuitbmx.com

Accepted Solution (1)

Guleria
Shopify Partner
3692 741 1039

This is an accepted solution.

Hello @Cara_Circuit ,

 

Follow these steps:

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

2. Open your main.css file and paste the following code at the bottom:

a.navigation__link.navigation__column-title {
    color: #ff0000;
}

 

You can change color code a/to your need.

 

If problem solved don't forget to Like it and Mark it as Solution!

Thanks

- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder

View solution in original post

Replies 7 (7)

suyash1
Shopify Partner
10210 1260 1600

@Cara_Circuit  please add this css to the very end of your main.css file and check

 

a.navigation__link.navigation__column-title {color: #ff0011;}

a.navigation__link.navigation__column-title:hover{color: #ff0011;}
To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.

Guleria
Shopify Partner
3692 741 1039

This is an accepted solution.

Hello @Cara_Circuit ,

 

Follow these steps:

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

2. Open your main.css file and paste the following code at the bottom:

a.navigation__link.navigation__column-title {
    color: #ff0000;
}

 

You can change color code a/to your need.

 

If problem solved don't forget to Like it and Mark it as Solution!

Thanks

- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder
Cara_Circuit
Tourist
17 0 3

Thank you for the fast reply! I've never edited code before. It was easy! Can you also tell me how to make it slightly larger? The list is larger than the headings

 

Guleria
Shopify Partner
3692 741 1039

To increase the font size use this css just next to the previous css

.navigation__item  a.navigation__link.navigation__column-title {
    font-size: 1rem !important;
}

 If problem solved don't forget to Like it and Mark it as Solution! 

 

Thanks

- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder
Cara_Circuit
Tourist
17 0 3

Thanks. When I put the code into my copy of the store it worked, but not on my live store. Perhaps an app is getting in the way? 

Guleria
Shopify Partner
3692 741 1039

  Can you apply the css in the live theme so i can check ?  

- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder
Guleria
Shopify Partner
3692 741 1039

Please replace both previously provided css with this one

.navigation__item a.navigation__link.navigation__column-title {
    font-size: 1rem!important;
    color: #000 !important;
}

 

If problem solved don't forget to Like it and Mark it as Solution!

- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder