New Shopify Certification now available: Liquid Storefronts for Theme Developers

Customer Account Icon Not Showing On Mobile Header

Solved
Kristiana17
Visitor
2 0 0

I'm trying to figure out how to add the customer account icon so it appears on mobile platform as well. I've tried finding the solution and tinkered with the coding a bit myself but I still cannot seem to figure it out.

Also, I'm having another issue where "Account" is showing in my sidebar menu, and I tried editing the settings in "Navigation" but it did not work to remove it.

Luxury Palace Interiors (luxpalaceinteriors.com)

Accepted Solution (1)
Artzen_tech
Shopify Partner
521 105 105

This is an accepted solution.

Hello @Kristiana17 
Its Artzen Technologies! We will be happy to help you today.


You can try to follow these steps:

Go to Online Store -> Themes -> Actions -> Edit code.

Go Assets folder -> theme.liquid file.

Add the following code in the bottom of the file above </body> tag

<style>
@media screen and (max-width: 640px){
.Header__Icon.hidden-phone {
    display: inline-block!important;
}
}
</style>

After that

Artzen_tech_0-1696998830658.png

 


Let me know if need further assistance
Regards,
Artzen Technologies

If helpful, please Like and Accept this Solution to help others
Artzen Technologies | A Shopify Development Agency
WhatsApp - 9877983930

Book FREE CONSULTATION who want to migrate to Shopify or want to start an eCommerce business with Shopify

View solution in original post

Replies 2 (2)
Artzen_tech
Shopify Partner
521 105 105

This is an accepted solution.

Hello @Kristiana17 
Its Artzen Technologies! We will be happy to help you today.


You can try to follow these steps:

Go to Online Store -> Themes -> Actions -> Edit code.

Go Assets folder -> theme.liquid file.

Add the following code in the bottom of the file above </body> tag

<style>
@media screen and (max-width: 640px){
.Header__Icon.hidden-phone {
    display: inline-block!important;
}
}
</style>

After that

Artzen_tech_0-1696998830658.png

 


Let me know if need further assistance
Regards,
Artzen Technologies

If helpful, please Like and Accept this Solution to help others
Artzen Technologies | A Shopify Development Agency
WhatsApp - 9877983930

Book FREE CONSULTATION who want to migrate to Shopify or want to start an eCommerce business with Shopify
Kristiana17
Visitor
2 0 0

That worked, thank you! 

So now I have one more question, how do I remove "Account"  from my sidebar menu? The "Navigation" didn't have anything in there where I could remove it.