• Closed
  • Patrick Horan
    Spectator
    April 21, 2017 at 8:42 pm #33472

    I am trying to create a gatekeeper page in our WordPress site that will be used to collect customer information.

    The end result we are trying to reach is that any links in the header are disabled. So if possible, I’d like someone provide the necessary custom CSS for the following:

    1) Hide all menus (Primary/Top/Sticky) on single page
    2) Hide social media/account icons on single page
    3) Disable link to home page in logo/title/tagline area of header

    As always, your help is greatly appreciated.

    Wordpress: 4.6.5
    Theme: +evolve 2.7.1
    Site: https://www.event1software.com
    Page in question: https://www.event1software.com/libertyreports-info/

    Priyank
    Spectator
    Posts: 747
    April 22, 2017 at 7:49 am #33476

    Hi,

    We have to send some custom css related to your problem, try it.

    .page-id-6855 .title-container #logo a {
    pointer-events: none;
    }

    .page-id-6855 #righttopcolumn,
    .page-id-6855 .menu-header-sticky {
    display: none;
    }

    @media (max-width: 768px) {
    .page-id-6855 .menu-header {
    display: none;
    }
    }

    Thank you

    Patrick Horan
    Spectator
    Posts: 21
    April 24, 2017 at 3:35 pm #33486

    That did the trick, thank you very much.

    Priyank
    Spectator
    Posts: 747
    April 25, 2017 at 6:58 am #33491

    Welcome
    Thank you