manbru
September 21, 2024, 6:51am
1
Hello,
I want to move all arrows to the right side on mobile.
my store: https://r1vex.myshopify.com/
On mobile my menu currently looks like this:
And I want it to look like this:
I was thinking that this might be be possible by setting the column gap to 100% or something but I’m not that good at css yet.
Thanks for your help!
Moeed
September 21, 2024, 6:55am
2
Hey @manbru
You have a code added in your theme files maybe in meteor-menu.css, so you have to remove the below code first which is this then add my code.
.Meteor-MobileNavigation .Meteor-MobileNavigation__Link a {
justify-content: flex-start !important;
}
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
@manbru , Add this code before in theme.liquid file
result:
Hello @manbru
Go to online store ---------> themes --------------> actions ------> edit code------->assets-----> components-menu-drawer.css
add this code at the end of the file.
.Meteor-MobileNavigation .Meteor-MobileNavigation__Link a {
justify-content: space-between !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Hello @manbru
You can add code by following these steps
Go to Online Store → Theme → Edit code.
Open your theme.liquid file
Paste the below code before on theme.liquid
@media screen and (max-width: 767px){
.Meteor-MobileNavigation .Meteor-MobileNavigation__Link a {
justify-content: space-between !important;
}
}
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Hello @manbru
If you add the CSS I mentioned below, your arrow will be positioned on the right side.
.Meteor-MobileNavigation .Meteor-MobileNavigation__Link a svg {
margin-left: auto;
}