Trade theme Customer Account Icon missing on mobile

Solved

Trade theme Customer Account Icon missing on mobile

Jess_GIAG
Visitor
2 0 0

I have Trade theme and the customer account icon is visible on desktop but not on mobile. I have tried a couple of the suggested fixes for other themes with no luck. I am wondering if someone can help me fix mine. My store is GiveItAGrow.shop

Accepted Solution (1)

Shadab_dev
Shopify Partner
1337 68 148

This is an accepted solution.

Okay, so open your theme code editor and look for base.css file and paste this code at the very bottom of everything.

 

@media screen and (max-width: 749px) {
.header__icon--account {

 display: block !important;

}
}

Hope this helps
Buy me Coffee, if you feel i was helpful. Email Me here or WhatsApp me with this link for any help with shopify theme customizations or any project in web dev. If this is helpful, please Like and Accept the solution.

View solution in original post

Reply 1 (1)

Shadab_dev
Shopify Partner
1337 68 148

This is an accepted solution.

Okay, so open your theme code editor and look for base.css file and paste this code at the very bottom of everything.

 

@media screen and (max-width: 749px) {
.header__icon--account {

 display: block !important;

}
}

Hope this helps
Buy me Coffee, if you feel i was helpful. Email Me here or WhatsApp me with this link for any help with shopify theme customizations or any project in web dev. If this is helpful, please Like and Accept the solution.