Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello there,

    Moesia theme doesn’t currently have a page template for that purpose. However, you can use ‘Full width’ page template and add extra CSS code like below to Additional CSS under Customize menu.

    
    .page-id-2.page-template-page_fullwidth .site-header, .page-id-2.page-template-page_fullwidth .sticky-wrapper, .page-id-2.page-template-page_fullwidth .site-footer { 
       display: none !important;
    }
    

    Specify your page ID number on ths class selector .page-id-2. You can get it on your web browser’s address bar which reads something like this:

    
    yoursite.com/wp-admin/post.php?post=2&action=edit
    

    Stay safe.
    Have an excellent day ??

    Regards,
    Kharis

    Thread Starter barbsm2

    (@barbsm2)

    Thanks, Kharis. Works pretty good… Weird that I see the header for like a 1/2 second.

    You’re welcome!

    Try this code:

    
    .page-id-2.page-template-page_fullwidth .site-header, .page-id-2.page-template-page_fullwidth .sticky-wrapper, .page-id-2.page-template-page_fullwidth .site-footer { 
       height: 0 !important;
       overflow: hidden;
       display: none !important;
    }
    

    and check whether it can avoid the header area from appearing 1/2 second before it is gone.

    Regards,
    Kharis

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