Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #361419

    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.

    #361439

    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

    #361778

    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

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.