Tagged: 

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #110658
    nikolaskrex
    Participant

    I can’t seem to find the option to NOT display page titles such as HOME or whatever the name of the page is. I would like to be able to have the title of the page show on some pages but not all of them (or if there is only a single on or off button I would like to have NO page titles).

    http://www.writeroftheflame.com is my website.

    #110700
    Mahesh
    Keymaster

    @nikolaskrex: You can do it with Custom CSS, please mention the pages and I’ll provide you with CSS.

    Regards,
    Mahesh

    #110745
    nikolaskrex
    Participant

    I would like to understand how to do it myself so that I can choose when, where, and how to apply the functionality, not always have to ask someone to provide custom css for this page or that.

    #110797
    Mahesh
    Keymaster

    @nikolaskrex: Yes, sure.

    /* For Homepage */
    .home .entry-header {
    	display: none;
    }
    
    /* For Artist Page */
    .page-id-444 .entry-header {
    	display: none;
    }


    Note: You’ll need to select the class of the page you want (eg. .page-id-444) in the above and use the CSS to hide the title of the very page.

    Regards,
    Mahesh

    #114417
    Esteban
    Participant

    All you have to do is add this to additional Css

    .page .entry-title {display: none;}

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