Hi, I would like to know how to change the color of the titles (h1, h2, h3…) but just inside a particular container. What would be the code to write on the CSS espace of this particular container?
Thanks.
Hi, I would like to know how to change the color of the titles (h1, h2, h3…) but just inside a particular container. What would be the code to write on the CSS espace of this particular container?
Thanks.
Hello @ProductionMD1986,
Thanks for asking.
If you are referring to a particular section inside Cornerstone builder, then in Heading element > Text Style you get the option to change color.
If you want to change color of blog page headline title, please add following CSS under X > Theme Options > CSS:
.entry-title {
color: #ddd;
}
1- I have found the proper CSS code selector using the Chrome browser Developer Toolbar:
2- For the CSS code itself, I suggest that you get started with this tutorial:
Thank you.
Hi, I meant what would be the code in the CSS line of the Container as shown in this pic :
There I put a code for the color of the body font of this container. What would be the code for the color of the titles (h1, h2, h3…)?
Hi There,
The inline CSS will not work.
Please add the your-container
class to the class field instead.
After that add this custom CSS under Theme Options > CSS:
.your-container h1,
.your-container h2,
.your-container h3 {
color: #fff;
}
Hope it helps
And this is why I love you guys!
Thanks, it worked!
You are most welcome.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.