Is there a simple code ti globally change all heading colors on pages & posts?
Thanks
never mind – I found the fix!
awesome theme btw!
thx
Well, I found the fix for page elements not within a text block. I need the code for headings within a text clock since mine are still using the default color.
thanks
Hey!
What code did you apply?
Cheers!
Josue
Hi Josue,
Here’s the code I’m using for the advanced editing ‘text blocks’
#top .main_color .avia_textblock h1 { color: #5c5140; }
#top .main_color .avia_textblock h2 {color: #5c5140; }
#top .main_color .avia_textblock h3 {color: #5c5140; }
Thanks,
Robert
Hey!
Can you please give us a link to the page with the headings within a text block? You can add a unique selector for the heading tag.
<h1 class="awesome-heading">This is a heading</h1>
You can add this on your custom.css or Quick CSS:
h1.awesome-heading {
color: #5c5140 !important;
}
Cheers!
Ismael
Hi Ismael,
Here’s a link:
http://www.tutorials.painthog.com/about/
Tried this code but didn’t change anything.
h1.awesome-heading {
color: #5c5140 !important;
}
Thanks,
Robert
Hi Robert!
Try with this code instead:
#top .avia_textblock h1 { color: #5c5140 !important; }
#top .avia_textblock h2 {color: #5c5140 !important; }
#top .avia_textblock h3 {color: #5c5140 !important; }
Best regards,
Josue
Hi Josue,
That did it!
Thanks for your expertise.
-Robert