Tagged: 

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #665235

    Hi,
    I have a campaign landing page (LP) for my business and used the code below to have this LP w/o nav menu. This works fine, but on mobile still the navigation hamburger button appears.

    How can I avoid/delete this hamburger button for the LP, too?

    .page-id-xxxx .main_menu {
    display: none;
    }

    #665301

    Hey Tilman,

    use this code to remove mobile menu:

    @media only screen and (max-width: 989px) {
    .responsive.html_mobile_menu_tablet .container #advanced_menu_toggle, .responsive.html_mobile_menu_tablet
    #advanced_menu_hide {
    display: none;
    }}
    

    Best regards,
    Andy

    #665318

    thx Andy – and this will delete the button on the ONE page ID ONLY as needed?

    #665326

    Hi,

    no. Add page-id of the page in questions, so something like this:

    @media only screen and (max-width: 989px) {
    .page-id-1665 .responsive.html_mobile_menu_tablet .container #advanced_menu_toggle, .responsive.html_mobile_menu_tablet
    #advanced_menu_hide {
    display: none;
    }}
    

    Best regards,
    Andy

    #665413

    hi,
    unfortunately the button ist still there e.g. on iPad

    #665416

    Hi!

    Please add following code to Quick CSS

    .page-id-8264 #advanced_menu_toggle { display: none !important; }

    Best regards,
    Yigit

    #665426

    Thx Yigit,
    this very lean one works pretty :-)

    Best regards, Tilman

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Landing Page w/o navigation also re. hamburger Button’ is closed to new replies.