• Hello,

    how can i adjust the theme css files so there is no title on my pages on the website?
    I tested this code:
    .page .entry-title, .page-title{
    display:none;
    }

    but that’s not working in the css i found this in the single page file:
    <h1 class=”page-title”><?php the_title(); ?></h1>
    Can i do something with this code?

    Thanks for the answer…

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Guido

    (@guido07111975)

    Hi,

    If you want to hide page title at every page just add this at the Extra CSS page of the Customizer in your dashboard:

    
    .page-title {display:none;}
    

    If you only want to hide it at a certain page:

    
    .page-id-9 .page-title {display:none;}
    

    (change the ID (9) to the one of your page)

    Guido

    ps. when adding code here, click the “code” button before and after adding code.

    Thread Starter pjotterke

    (@pjotterke)

    Thanks for the reply, what is the difference with the code i used earlier?

    Theme Author Guido

    (@guido07111975)

    I now see you try to hide page-title and post-title. Is that what you want?

    My fix is for hiding page title only.

    Guido

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Hide page title’ is closed to new replies.