How to Move my logo to the left and hamburger to the Right on mobile view ?

Hi , Guys . Help me .

In Mobile Views , I want to move Logo in left and hamburger to the Right . How to do it ?

website - https://www.glowingredients.com/

1 Like

Hello @liteleraja ,

Follow these steps:

  1. Go to Online Store → Theme → Edit code

  2. Open your header.css file and paste the following code at the bottom:

.m-header header{
padding-left: 0;
}
.m-menu-button {
    order: 1; 
    max-width: 30px !important;
}
.m-logo{
    order: 0;
justify-content: left;
padding: 0;
}

If problem solved don’t forget to Like it and Mark it as Solution!
And if you need help with customization/code part you can contact me for services

You can find the email in the signature below.

Thanks

I have made the changes . It doesn’t working properly. I can see Old Logo position for few seconds . New Logo and Hamburger position comes after 1s .

Please see my website in mobile browser

Yes you are right.

btw solution is find the existing css in the same file or other css files and remove it.

Once you remove the existing css this issue will be fixed.

Hi @liteleraja

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (max-width:749px){
span.m-menu-button.m\:flex.m\:flex-1.m\:w-3\/12 {
    order: 3 !important;
}

.m-logo.m-logo--mobile.m\:justify-center.m\:w-6\/12.m-logo--has-image {
    justify-content: flex-start !important;
    padding-left: 0 !important;
    margin-left: 15px;
}

span.m-menu-button.m\:flex.m\:flex-1.m\:w-3\/12 {
    max-width: fit-content !important;
}
}
  • And Save.

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!