How can I change the color of specific text on my website?

Hi Guys,

Hoping someone can help me.

I am trying to change a specific piece of text on my website that I cannot easily do through the shopify ‘Customize’ page.

As you can see below in the screenshots. The text “Recently viewed” is in white. I need this changed to black.

Page url:

https://mjvintage.com/collections/sweatshirts-jumpers


Many thanks

Matthew

Hi @MatthewOzcan !

The following block of code in themes.css might be the issue. Let’s try changing “white” (or #fff) to “black” (#000)

.SectionHeader__Heading{
    font-size: 40px !important;
    color: white !important;
}

Cheers!

Hi JHKCreate,

Thank you for the response, this code does work however it changes to black
text across the whole website and not this specific section “Recently
viewed”

Hi @MatthewOzcan !

Let’s try the following:

#shopify-section-template--15142317031624__recently-viewed-products > section > header > div > h3 {
    color: black !important;
}

Cheers!

Hi, thank you but it still doesn’t seem to be working