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/
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/
Hello @liteleraja ,
Follow these steps:
Go to Online Store → Theme → Edit code
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.
@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;
}
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!