Hi,
I’m sorry if my question is basic, I’m new to this. I am having trouble changing the heading colour for my site, separate from body font colour.
I tried the suggestions here with the custom.css: https://kriesi.at/support/topic/heading-colors. No luck. Is there anything else I need to add? Thanks so much.
the tip is just for dynamic elements – try h1 {color: #222222;} by the way – did you clear the cache of your browser? Normally css files are cached and the old version is presented.
Thanks melonmelon. I also have tried adding the usual css header commands, both in the quick css space and in the custom.css. No luck.
Hi,
Can you give us a link to your website? There a lot of headings included on the theme. Which is heading are you trying to change? Blog heading? Post title heading? Page Heading?
Please include a screenshot.
You can use this
.alternate_color.title_container .main-title a {
color: red !important;
}
.main-title a, h2 {
color: red !important;
}
Change the color value.
Regards,
Ismael
thanks, this helped for some of what i wanted – the regular h1, h2… headings. i would also like to change the headings for things in the shortcode elements, such as icon lists and icon boxes.
Hi,
Iconbox title:
.main_color .iconbox_content_title {
color: red;
}
Icon lists:
.alternate_color .iconlist_title {
color: red;
}
Regards,
Ismael
Perfect. Thanks so so much.