Remove Page Titles

  • How do I remove page menu titles without removing post titles?

    How do I remove “Comments are closed.” from bottom of page after disabling comments from a page?

    How do I “bold” the current page in the menu as users click on menu?

    Thank you.

    The blog I need help with is: (visible only to logged in users)

  • To remove titles from static pages, such as your sho and about page, add the following to your custom CSS.

    .page .entry-title {
    	display: none;
    }
  • Thank you! It worked except on post page.

    Does anyone know how to delete extra space between header and body content so there is less scrolling down?

  • Hi, on Promenade, has some different styling for different page types. Change the CSS I had previously given to this.

    .page .entry-title, .site-content-header {
    	display:none
    }

    On the spacing, add this to your custom CSS. It seems to catch everything, but make sure and check.

    .page .site-content-inside, .site-content-inside {
    	padding-top: 20px;
    }
  • The topic ‘Remove Page Titles’ is closed to new replies.