Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1098413

    Hi, how can I move the logo to the left and the menu icon to the right on mobile?

    #1098727

    Hey DROR,

    Please try the following in Quick CSS under Enfold->General Styling:

    .responsive #top .logo {
        right: 0;
    }
    
    .responsive #top .main_menu {
        left: 0;
        right: auto;
    }

    Best regards,
    Rikard

    #1098948

    Hi Rikard, I only want to make the move on mobile. The code above effects desktop and the logo and menu are OK on desktop.

    #1099368

    Hi bakbek,

    Try adding media query on Rikard’s code, it should be:

    @media only screen and (max-width:767px) {
      .responsive #top .logo {
        right: 0;
      }
    
      .responsive #top .main_menu {
        left: 0;
        right: auto;
      }
    }

    Hope it helps.

    Best regards,
    Nikko

    #1099407

    Hi Nikko, it doesn’t seem to make any difference.

    #1099426

    Hi,

    Did you add the code to the very top of quick css so it runs first? Also, be sure to clear the cache a few times over.

    Best regards,
    Jordan Shannon

    #1099572

    Yes, it’s the only code I have in my custom CSS and I checked it on incognito. Do you see it working for you? The menu is still on the left and the menu is till on the right on mobile as it was before.

    #1099717

    Hi Dror,

    Sorry, I misunderstood your question. Please try this CSS instead:

    @media only screen and (max-width: 767px) {
    .responsive #top .logo {
        float: left !important;
    }
    nav.main_menu {
        left: auto !important;
        right: 0 !important;
    }
    }

    Best regards,
    Rikard

    #1099728

    Thanks, the menu is on the right but the logo is not on the left, it’s somewhere in the middle…

    #1099859

    Hi,
    Are you still having this issue? When I look at your site on mobile the logo is on the left and the burger menu is on the right, Please see the screenshot in Private Content area.

    Best regards,
    Mike

    #1099929

    No, all good. Thanks.

    Can you tell me how to make the menu on mobile transparent and appear only on scroll and make it sticky? Pretty much the same functionaliiy it has on desktop?

    #1100246

    Hi bakbek,

    Unfortunately, it would require quite some time and customization of the theme to achieve this, so I am sorry to tell you that this is not covered by our support. However, if it’s really important for you to get this done, you can always hire a freelancer to do the job for you :)

    Best regards,
    Victoria

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