Hi,
Can someone assist me with moving the logo to the left side of the screen in mobile view.
store link: https://www.nutravalid.com/
Thank you
A user needed help moving their store logo to the left side on mobile view for their Shopify store.
Solution provided:
justify-content: flex-start to the logo elementdisplay: noneOutcome:
The issue was resolved successfully with the provided CSS code snippet. The discussion is closed with the original poster confirming the solution worked.
Hi,
Can someone assist me with moving the logo to the left side of the screen in mobile view.
store link: https://www.nutravalid.com/
Thank you
Go to your online store → customize → settings → custom css and paste this code there
@media only screen and (max-width: 768px) {
span.m-menu-button.m\:flex.m\:flex-1.m\:w-3\/12 {
display: none;
}
.m-logo {
justify-content: flex-start;
}
}
Legend - Thank you
Thanks for the kind words ![]()