How can I fix login text issues in mobile view menu bar?

Solved

How can I fix login text issues in mobile view menu bar?

Yash234
Shopify Partner
17 0 4

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 

Yash234_0-1711715181548.png

 

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
9843 2340 2934

This is an accepted solution.

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:

Made4uoRibe_0-1711719034059.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 2 (2)

Made4uo-Ribe
Shopify Partner
9843 2340 2934

This is an accepted solution.

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:

Made4uoRibe_0-1711719034059.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Yash234
Shopify Partner
17 0 4

It worked thanks!