How to unlink the colour of slideshow text from the menu text colour - Taste theme

Everytime I change the menu colour, it changes the colour of the text in slideshow, I want to be able to separate the two and not have one affect the other.

1 Like

Hello @lisanchem

would you like to share your store URL and password if any please.
so i can check and provide you possible solution for your question.

Hi @lisanchem

Would you mind to share your Store URL website? with password if its unpublish. Thanks!

Hi,

url: https://080d97-8b.myshopify.com/

password: utredi

Hi,

url: https://080d97-8b.myshopify.com/

password: utredi

Thanks for the info, check this one.

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

/* Banner heading color */
h2.banner__heading.inline-richtext {
    color: #fff;
}

And Save.

Result:

Note: CHange the color you like.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

You can add code by following these steps

  1. Go to Online Store β†’ Theme β†’ Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.slideshow__text.banner__box.content-container.content-container--full-width-mobile h2 { color: #fff !important; }

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

Thank you, that worked.