Hi, I am trying to change the color of the heading and subheading text on my home page slider image.
I would like the heading to be #000000 and the ssubheading to be #7C1C1D like shown below
Hi, I am trying to change the color of the heading and subheading text on my home page slider image.
I would like the heading to be #000000 and the ssubheading to be #7C1C1D like shown below
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
yes, please try this code
.slideshow__text h2.banner__heading.h0 {
color: #000;
}
.slideshow__text .banner__text {
color: #7C1C1D;
}
sorry it didn’t work