The Log in button is missing on mobile view -Studio theme, help!

Solved

The Log in button is missing on mobile view -Studio theme, help!

Pink_monkey
Tourist
4 0 3

Hello! I noticed that the log-in icon is missing from the header on the mobile view; it's also not shown on the slide-out menu. I would like it to be displayed next to the Cart icon. I know many people have asked for help on this, I have tried some solutions from former posts that involved editing the theme code by adding snippets of code in some sections, but nothing has helped so far. I also enabled the Settings > Customer accounts > Show login links, which didn't fix the issue. Thanks.

Accepted Solution (1)
Guleria
Shopify Partner
3951 791 1123

This is an accepted solution.

There is another one.

Please remove the code I provided from base.css and follow this

Edit theme.liquid search for </head>

and just before to it add this code

<style>
a.header__icon.header__icon--account.link.focus-inset.small-hide {
    display: block !important; 
    width: 2rem !important;
}
</style>

 

Regards
Guleria

- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder

View solution in original post

Replies 7 (7)

Guleria
Shopify Partner
3951 791 1123

Hello @Pink_monkey ,

 

Please share the store URL.

 

Regards
Guleria

- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder
Pink_monkey
Tourist
4 0 3

Hello Guleria, the link is:

goldensagejewelry.com 

Guleria
Shopify Partner
3951 791 1123

Follow these steps:

1. Go to Online Store -> Theme -> Edit code

2. Open your base.css file and paste the following code at the bottom:

a.header__icon.header__icon--account.link.focus-inset.small-hide {
    display: block !important; 
    width: 2rem !important;
}

 

Regards
Guleria

- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder
Pink_monkey
Tourist
4 0 3

Hello,

Thanks for sending the code. How long should it take to work?

Guleria
Shopify Partner
3951 791 1123

I checked you added the css code but there is syntax error in your existing css.

You forgot to close the curly } bracket in media query scope. 
it should be like this

@media screen and (max-width: 749px) {
  
.header .header__icon--account {
    display: flex !important;
}
} // this one you are missing
  a.header__icon.header__icon--account.link.focus-inset.small-hide {
    display: block !important; 
    width: 2rem !important;
}

 

- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder
Guleria
Shopify Partner
3951 791 1123

This is an accepted solution.

There is another one.

Please remove the code I provided from base.css and follow this

Edit theme.liquid search for </head>

and just before to it add this code

<style>
a.header__icon.header__icon--account.link.focus-inset.small-hide {
    display: block !important; 
    width: 2rem !important;
}
</style>

 

Regards
Guleria

- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder
Pink_monkey
Tourist
4 0 3

This last one worked! I'm so happy! Thanks so much for your help!! ❤️