• Resolved edeonard

    (@edeonard)


    Hi,
    I have hidden the titles of the pages I have, including the static front page to avoid a “Home” appearing. however, I would like to remove the placeholder/div that is there so that the rest of the page is moved up a touch.

    Is this possible just for the static front page?

    eg

    1) without title hidden:

    website name
    Home
    image and blurb

    2) with title hidden:

    website name
    < blank space >
    image and blurb

    what I desire is 3: with placeholder / div removed:

    website name
    image and blurb

    Thanks in advance
    All the best

Viewing 1 replies (of 1 total)
  • Theme Author Ben Sibley

    (@bensibley)

    Sure, try out this CSS:

    .page .post-header {
      display: none !important;
    }

    In the above code, we’re removing the post-header element which contains the title and the spacing above/below it. I’ve preceded it with the class “page” so it only affects titles on pages (not posts), but it’s the post-header part in particular needed to hide titles and their spacing.

Viewing 1 replies (of 1 total)
  • The topic ‘removing the page title section of a front page (not same as hidden)’ is closed to new replies.