remove header on pages

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #20087
    mdavtian
    Member

    Hi there,

    I am trying to remove the header on the pages. You can view my website here:

    conservenaturalforests.org. I would like to remove all the headers that are marked as Pages. I tried to edit them within the “edit page” options but it did not work. I don’t want to replace the header with anything, just remove it from the page entirely. How can I do this?

    Thank you!

    #20095
    Veena
    Moderator

    You can use the below custom CSS in themeoptions –

    header#title-area {
        display: none;
    }
    
    #20330
    mdavtian
    Member

    Thank you, it worked, the header was removed from all the pages, but now I want the header to show up on the portfolio entries only.

    Thanks again!

    #20368
    Veena
    Moderator

    You can use the below custom CSS in themeoptions –

    body.post-type-archive.post-type-archive-portfolio #title-area {
        display: block;
    }
    .single-portfolio #title-area {
        display: block;
    }
    
    #20494
    mdavtian
    Member

    It worked!! Thank you so much! Last question (I think!). I want to change the color of the title on the portfolio image. How do I do that?

    Thanks again for all your help!

    #20505
    Veena
    Moderator

    You can use the below custom CSS –

    .portfolio.type-portfolio h3.post-title a {
        color: #90CE18;
    }
    
Viewing 6 posts - 1 through 6 (of 6 total)
  • The forum ‘Peak Theme Support’ is closed to new topics and replies.