Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #1363610

    Hello all
    have created a page here.
    Link see below:
    My question: is it possible to place the menu at the very bottom left, maybe with css.

    thanks in advance

    kind regards
    Franz

    #1363618

    Hi,

    Thanks for contacting us!

    Please go to Enfold theme options > Footer Footer Behavior and choose “Sticky with curtain effect”. If that does not help, please post a screenshot showing the changes you would like to make so we can make sure that we are on the same page.

    You can upload your screenshots on imgur.com and post the links here :)

    Regards,
    Yigit

    #1363623

    Thanks for your quick feedback

    have a link below

    would it be possible to move the menu all the way to the bottom

    or maybe just show the hamburgermenu at the bottom.

    hope I have expressed myself correctly

    thank you and kind regards
    Franz

    #1363643

    the normal non mobile Menu will be hard to get. Because the flyout submenus had to slide out from bottom to top. This maybe possible but is a lot of css to change.

    the hamburger is up to you – if you go and set it to postition: fixed you can shift it to whereever you like.
    f.e.:

    .av-burger-menu-main.menu-item-avia-special {
      position: fixed;
      bottom: 0;
      right: 10px;
      padding: 10px;
    }
    
    .av-hamburger {
      padding: 15px 8px;
      display: inline;
      background-color: rgba(255,255,255,0.5);
    }
    #1363660

    hallo Guenni007
    this works great, thank you

    can I then set all headers to invisible?
    or will the hamburger menu also disappear?

    thanks in advance

    kind regards
    franz

    #1363682

    if you choose the header style: logo center – navigation below it would be possible.
    in this case the navigation will be in an extra container: header_alternate not inside logo container
    and set for: Menu Items For Desktop to icon

    then try :

    .av-burger-menu-main.menu-item-avia-special {
      position: fixed !important;
      bottom: 0;
      left: 10px;
      padding: 10px;
      z-index: 1001 !important;
    }
    
    .av-hamburger {
      padding: 15px 8px;
      display: inline;
      background-color: rgba(255,255,255,1);
      box-shadow: 0 0 15px -5px #333
    }
    
    #header, #header_main {
      height: 0px !important
    }
    
    @media only screen and (max-width:767px) { 
     .responsive #header_main_alternate {
      display: block
     }
    }
    
    .container.av-logo-container, 
    .header_bg {
      display: none !important;
    }
    
    .responsive #main {
      padding-top: 0 !important
    }
    #1363683

    hello
    thank you
    that fits so quite well

    can the hamburger menu also be displayed on the left side?

    And above the border above the video
    I do not bring away ?

    thanks in advance

    kind regards
    franz

    #1363686

    Hello Guienna7
    Thank you for your instructions

    I have made a total mistake
    now I have installed the theme again and applied your instructions exactly.

    now it looks great

    one more question
    how can i hide the top container
    title and you are here.

    and then would be
    can i center the hamburger menu

    Thanks in advance
    kind regards
    Franz

    #1363688

    on Enfold Options you can go to : Header – Header Layout : “Header Title and Breadcrumbs” set it to : hide both

    and to center replace the first css rule

    .av-burger-menu-main.menu-item-avia-special {
      position: fixed !important;
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      padding: 10px;
      z-index: 1001 !important;
    }
    #1363689

    if you like to have the burger without distance to the bottom set the padding-bottom to zero:

    .av-burger-menu-main.menu-item-avia-special {
      position: fixed !important;
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      margin-bottom: -3px;
      padding: 10px 10px 0;
      z-index: 1001 !important;
    }
    #1363690

    Thousand thanks
    Guenni007

    Now it looks great
    great support

    You can close this request

    kind regards
    Franz

    #1363694

    do not forget to colorize the active burger:

    .av-burger-overlay-active #top .av-hamburger-inner,
    .av-burger-overlay-active #top .av-hamburger-inner::before,
    .av-burger-overlay-active #top .av-hamburger-inner::after {
     background-color:#a81010;
    }
    #1363696

    Thanks a lot
    I did not notice at first,
    because on the mobile it worked

    Thanks again

    kind regards
    Franz

    #1363711

    Thousand thanks
    Guenni007

    Now it looks great
    great support

    You can close this request

    kind regards
    Franz

    #1363715

    Hi Franz,

    Great, I’m glad that @guenni007 could help you out. I’ll close this thread for now then, Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 15 posts - 1 through 15 (of 15 total)
  • The topic ‘menu at the bottom’ is closed to new replies.