Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1133401

    Hey guys,

    how can I move just the mobile menu (and alternative mobile menu) and search icon (bar) to the bottom of my website and make it fixed? (look at screenshot)

    Thanks!

    Best regards

    • This topic was modified 5 years ago by coolicious.
    #1134011

    Hey coolicious,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (max-width: 767px) {
    
      .responsive #header_main .main_menu {
        display: none !important;
      }
      .responsive #header_main_alternate {
        display: block;
    }
        .responsive #top #wrap_all #header_main_alternate .main_menu{
           display: block !important;
           position: fixed !important;
           bottom: 0;
           top: auto;
           background-color: #ccc;
      }
      .html_header_top.html_logo_center #top #header_main_alternate .main_menu ul {
          padding: 30px 5px;
      }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1140046

    It works, thank you! :)

    #1140052

    Hi,

    I’m glad this was resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Move mobile menu to the bottom of the website and make it fixed?’ is closed to new replies.