How do I change the menu title color in theme Dawn?

Hi,

I have some troubles with changing the color of my menu tittle.

The one that I want to change its “COMBINACIONES” to color #388d7c

Any help? thanks.

Hi @Laura_54 ,

Please share your store URL and if your store is password protected then please provide password too.

So that we can help you.

Thank you.

Hi @AvadaCommerce

you helped me last time with the same issue. Thank you.

Now I want to change the first two to the same color

this is the store: https://www.bikotestore.com/

Hi @Laura_54 ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/component-menu-drawer.css->paste below code at the bottom of the file:
@media (max-width: 767px) {
.menu-drawer__menu a[href="/pages/combinaciones"] {
    color: #388d7c !important;
}
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

1 Like

@AvadaCommerce

thank you for your help but it did not work
:disappointed_face:

Hi @Laura_54 ,

I made a mistake, my code only works on mobile. Sorry

You can try replace previous code by below code:

.menu-drawer__menu a[href="/pages/combinaciones"] {
    color: #388d7c !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

1 Like

Thank you! it worked now

1 Like