• i want to hide the title on my wordpress pages. when doing so with a plugin or CSS it leaves a blank space. i tried the following CSS code but it does not remove the space:

    .page .entry-title {
    	display: none;
    }
    
    .postarea {
    	padding-top: 0;
    }

    how do i remove the title spacing?

Viewing 1 replies (of 1 total)
  • Theme Author CrestaProject

    (@crestaproject)

    Hi @maurinmaurin,
    go in your WordPress Dashboard under “Appearance-> Customize-> Additional CSS” and paste this CSS code:

    
    body.page header.entry-header {
    display: none
    }
    

    This code will hide page titles (not posts).

Viewing 1 replies (of 1 total)
  • The topic ‘hide page title and blank space it leaves’ is closed to new replies.