When i switch to mobile view the text of login is messed up in the menu bar
Can anyone please help me how can i fix it ?
STORE URL : https://b58128-e6.myshopify.com/
Attaching the screenshot of the issue
A Shopify store owner encountered a display problem where login text appeared distorted or misaligned in the mobile view menu bar.
Solution Provided:
.menu__reward-account to 100% width with 15px gapOutcome:
The CSS fix successfully resolved the mobile menu text display issue. The solution was marked as helpful by the original poster.
When i switch to mobile view the text of login is messed up in the menu bar
Can anyone please help me how can i fix it ?
STORE URL : https://b58128-e6.myshopify.com/
Attaching the screenshot of the issue
Hi @Yash234
Check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
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){
.menu-drawer__account {
width: 100%;
gap: 15px;
}
a.menu-drawer__account.link.focus-inset.h5.medium-hide.large-up-hide svg {
height: 30px;
}
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
It worked thanks!