Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #899887

    Hi, how can I move the logo on mobile to the left so it won’t overlap the menu icon?

    #900041

    Hey DROR,

    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 #top #wrap_all .main_menu {
          left: 0;
          right: auto;
      }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #900056

    That moved the menu to the left. How can I keep the menu on the right and only move the logo to the left?

    #901395

    Hi bakbek,

    Do you mean you want the logo left/burger right set up for mobile?

    Best regards,
    Victoria

    #901414

    Yes, logo on the left and burger menu on the right.

    #901935

    Hi bakbek,

    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 #top #wrap_all .main_menu {
        left: auto;
        right: 0;
      }
      .html_header_top #top .av_logo_right .logo {
          left: 0;
          float: left;
      }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #901995

    Thanks. how can I remove the top menu bar only from mobile?

    #902657

    Hi bakbek,

    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: 479px) {
      #header_meta {
        display: none;
      }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #902847

    Thanks.

    #902849

    Hi,
    Glad Victoria was able to help, shall we close this then?

    Best regards,
    Mike

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.