Okay
  Public Ticket #3689826
Removing header from just a specific page
Closed

Comments

  •  2
    Utkarsh started the conversation

    Im currently working on a website and have put a coming soon page I wanted to remove header completely so I have used additional CSS from customise menu

    .admin-bar header {
        visibility: collapse;
    }

    but this will hinder when I work on other pages give me a fix so that I can specifically edit header just on my coming soon page


  •  1,972
    Support replied

    Hello,

    I'm not sure why do you prefix the css style with admin-bar this applies only when you are logged in.

    so assuming the coming soon page is actually your home page you need to use something like 

    .home header {
        visibility: collapse;
    }

    in customizer -> additional css

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  •  2
    Utkarsh replied

    Used elementor pro plugin and added on page custom CSS to remove it