How to change banner text colour no option in theme setting need code?

I want to change this banner text colour to black There is no option in theme setting I need a code so that I can change its colour.

Thanks

Hi @saadravian1

Would you mind sharing your store’s URL so we can provide a solution for that?

1 Like

Yes sure

www.saad100.com

Add the following code at end of your base.css file:

.banner__box.content-container.content-container--full-width-mobile.color-background-1 {
    color: black;
}

h2.banner__heading.h0 {
    color: black;
}

a.button.button--secondary {
    color: black;
}

.banner--desktop-transparent .button--secondary {
    --color-button: 255, 255, 255!important;
}

Should that help answer your query, we always appreciate liking & marking an as answer to let the community find quality solutions faster. Thanks!

1 Like

Thank you very much it helped thanks

Now I know where to come if I needed help looking for the solution for a day now and here in 10 minutes I got the solution Thanks