Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #31733
    Leland G. Hoover
    Guest

    Hi, Can I suppress or customize the header/footer for a single landing page without changing the header/footer on other pages? I am using Crio Premium on WordPress.
    Thanks for your help!
    – Leland

    #31743
    BoldGrid Support
    Keymaster

    Hi Leland,

    Thanks for the great question! At this time we are actively working on adding a new feature for custom page headers, and we expect it to release within the next few weeks.

    In the meantime, if you’d like to hide the header or footer on any single page, you can do so with custom CSS. First you’ll need to find the ID for the page or post you’d like to hide them on. To do this, open the page on the front end of your website, right click your mouse and inspector using your browser developer tools. Look for the body class near the top of the code, and in that section of code you will see page-id-# or postid-# – copy this code.

    Now open the Customizer and navigate to CSS/JS Editor to add custom CSS. You can use this sample code, replacing the postid-1 with your specific page-id or postid.

    .postid-1 .site-header,
    .postid-1 .site-footer {
        display: none;
    }

    Or, just for one:

    .postid-1 .site-footer {
        display: none;
    }

    Please let us know if this worked, or if you have any additional questions.

    Thanks,
    Nicole

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Can the header/footer be hidden for a single landing page?’ is closed to new replies.