Change color of text on slideshow dawn theme

Hi, I am trying to change the color of the heading and subheading text on my home page slider image.

www.therscued.com

I would like the heading to be #000000 and the ssubheading to be #7C1C1D like shown below

1 Like

Hello,

Changing that color of heading and subheading assuming your website structure can be done using the below CSS code:

h2.banner__heading.h0 {
  color: #000000;
}
.banner__text span {
  color: #7C1C1D;
}

Cheers!

Gabriel

@theRSCUED

yes, please try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/base.css ->paste below code at the bottom of the file.
.slideshow__text h2.banner__heading.h0 {
    color: #000;
}
.slideshow__text  .banner__text {
    color: #7C1C1D;
}

sorry it didn’t work

1 Like