How Would I Go About Making This Text White?

hi again friends!

how can i change this text only to white? i don’t want to mess with my theme color settings because it does weird things like only changing some of my already white text to black.

i am using a custom bought theme from etsy that i am additionally trying to customize with app widgets and sections, but this section in particular is a basic shopify image header.

![make text white please|1905x883](upload://axnDmuuvYXPsG143mC5Vbx2pPJw.jpeg)

all suggestions will be taken into serious consideration!

my url is: https://www.atmosphaera.co

@atmosphaera Just confirming, would you like to display like attached one?

Hi @atmosphaera

Check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

.banner__box h1, span {
    color: white;
}

And Save.

Result:

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

hey! thank you! it did work, but it also changed another H1 on the page that actually has a white background so it messed a different part up. is ther any option to edit the css of individual sections/boxes?

Replace with this one. Im only calling the specific banner.

div#Banner-template--15230243340366__image_banner_rqVhc7 .banner__box h2, .banner__box span {
    color: whie;
}

And Save.

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

yay, it worked! the previous one had made my blog text ‘disappear’ too because it was white on white, ha!