• Closed
  • Patrick Horan
    Spectator
    21.04.2017 at 20:42 #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
    22.04.2017 at 07:49 #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
    24.04.2017 at 15:35 #33486

    That did the trick, thank you very much.

    Priyank
    Spectator
    Posts: 747
    25.04.2017 at 06:58 #33491

    Welcome
    Thank you