Is it possible in Enfold to get different font colors (h1 till h6 and paragraph) for a different page? For example 6 different colorschemes?
Just making a html-website that is not that difficult.
you just have to look what page-id is given to your special site.
Than you can make some quick css e.g:
.page-id-207 p {
color: #900;
}
same with h1 to h6
Hey!
Thanks for the help Guenni007.
@rijnencreatie, Our special headings element lets you change the colors. As for the paragraphs you could try adding a class to them like so.
<p class = "different-color2">Some text</p>
And then use this CSS to style it.
.different-color2 { color: red !important; }
Best regards,
Elliott