Tagged: 

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #87818
    creativesigns
    Participant

    Hi
    I found a thread which showed how to turn off page titles from being displayed, which I have done. However, I think instead I would just like to turn off page title on my home page. Can you please advise of the code to do that?
    http://www.creativesigns.uk.com
    Many thanks
    Karen

    #87842
    Pratik
    Keymaster

    Hi @creativesigns,

    You have following code in your Appearance=> Customize=> Custom CSS box:

    
    #main .page header.entry-header{
       display: none;
    }
    

    Just edit it to following:

    
    .home #main .page header.entry-header{
       display: none;
    }
    

    And it should only remove the page title on home page.

    Let me know if it works or not.

    Regards,
    Pratik

    #90340
    robertl
    Participant

    How do you do that for all pages? But also at the same time not removing the menu alias in the main navigation bar

    #90343
    Pratik
    Keymaster

    HI @robert,
    To remove it from all pages, just use the first code block. It will keep the menu alias in main navigation as well.

    
    #main .page header.entry-header{
       display: none;
    }
    

    Let me know if it works or not.

    Regards,
    Pratik

    #90344
    robertl
    Participant

    Perfect! Thanks so much! 🙂

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Page titles’ is closed to new replies.