Re: Remove Account/Login Icon on mobile device

Solved

Remove Account/Login Icon on mobile device

manan123
Pathfinder
179 1 23

I want to remove account / login icon only on mobile device from the header section please help me in this

 Store url -  https://mansaroverfurnishings.com/

 

manan123_0-1707301994375.png

 

Accepted Solutions (3)

webwondersco
Shopify Partner
1164 169 169

This is an accepted solution.

@manan123 Please add the below line of CSS code at the end of your base.css file.

 

.header__icon--account {
    display: none !important;
}

 

 

Web Wonders | Shopify Partner | Connect here!
- Question answered? Mark as Accepted Solution, reply helpful? Click Like
- Hire me, if you want to design, re-design, develop a store, or make changes to the pre-built store.
- a small Coffee Tip would be greatly appreciated. :)..! Instagram

View solution in original post

BrainStation23
Shopify Partner
406 60 58

This is an accepted solution.

@manan123 

You can add the followings:

1. Go to your theme editor

2. From Theme Settings click Custom CSS

3. Paste the below code there:

 

 

@media screen and (max-width: 600px) {
  .header__icon .header__icon--account {
    display: none !important;
  }
}

 

 

Joy Matubber | Brain Station 23
 - Was my reply helpful? Click Like to let me know! 
 - Was your question answered? Mark it as an Accepted Solution

 

Brain Station 23 PLC (Mail: [email protected])
- Was your question answered? Mark it as an Accepted Solution
- Did the solution not address your concern? We kindly request that share or mail your store URL with us this will enable us to collaborate more closely.
- Explore our Shopify public apps

View solution in original post

webwondersco
Shopify Partner
1164 169 169

This is an accepted solution.

@manan123 sorry, correction in the code.

 

Please add media query to execute CSS only for mobile devices.

 

@media(max-width:767px){
.header__icon--account {
    display: none !important;
}
}
Web Wonders | Shopify Partner | Connect here!
- Question answered? Mark as Accepted Solution, reply helpful? Click Like
- Hire me, if you want to design, re-design, develop a store, or make changes to the pre-built store.
- a small Coffee Tip would be greatly appreciated. :)..! Instagram

View solution in original post

Replies 11 (11)

webwondersco
Shopify Partner
1164 169 169

This is an accepted solution.

@manan123 Please add the below line of CSS code at the end of your base.css file.

 

.header__icon--account {
    display: none !important;
}

 

 

Web Wonders | Shopify Partner | Connect here!
- Question answered? Mark as Accepted Solution, reply helpful? Click Like
- Hire me, if you want to design, re-design, develop a store, or make changes to the pre-built store.
- a small Coffee Tip would be greatly appreciated. :)..! Instagram
webwondersco
Shopify Partner
1164 169 169

This is an accepted solution.

@manan123 sorry, correction in the code.

 

Please add media query to execute CSS only for mobile devices.

 

@media(max-width:767px){
.header__icon--account {
    display: none !important;
}
}
Web Wonders | Shopify Partner | Connect here!
- Question answered? Mark as Accepted Solution, reply helpful? Click Like
- Hire me, if you want to design, re-design, develop a store, or make changes to the pre-built store.
- a small Coffee Tip would be greatly appreciated. :)..! Instagram
manan123
Pathfinder
179 1 23

thanks you so much!!!1

 

one more thing i want to shift the sign in option from the footer in categories to upward on mobile device

store url - https://mansaroverfurnishings.com/

Check image for better understanding

manan123_1-1707303715726.png

 

want to shift this highlighted option to the upward

webwondersco
Shopify Partner
1164 169 169

okay @manan123 got it.

 

But it requires updating some code in your theme.

 

This is not possible only with CSS. it require to update your theme code.

Web Wonders | Shopify Partner | Connect here!
- Question answered? Mark as Accepted Solution, reply helpful? Click Like
- Hire me, if you want to design, re-design, develop a store, or make changes to the pre-built store.
- a small Coffee Tip would be greatly appreciated. :)..! Instagram
manan123
Pathfinder
179 1 23

please tell me how can i do that??

webwondersco
Shopify Partner
1164 169 169

For that,need to check your theme code or structure od menu drawer code.

Web Wonders | Shopify Partner | Connect here!
- Question answered? Mark as Accepted Solution, reply helpful? Click Like
- Hire me, if you want to design, re-design, develop a store, or make changes to the pre-built store.
- a small Coffee Tip would be greatly appreciated. :)..! Instagram
manan123
Pathfinder
179 1 23

can you please help me to make my announcement bar transparent & of same colour on mobile device also as it is on desktop device??

 

store url  --https://mansaroverfurnishings.com/

webwondersco
Shopify Partner
1164 169 169

would you like to display it as an attachment?

 

webwondersco_0-1707314086977.png

 

Web Wonders | Shopify Partner | Connect here!
- Question answered? Mark as Accepted Solution, reply helpful? Click Like
- Hire me, if you want to design, re-design, develop a store, or make changes to the pre-built store.
- a small Coffee Tip would be greatly appreciated. :)..! Instagram
manan123
Pathfinder
179 1 23

i want to display exactly in mobile as it is on desktop

manan123
Pathfinder
179 1 23

Hey i have attached files below please check and tell me where i have to correct the code

BrainStation23
Shopify Partner
406 60 58

This is an accepted solution.

@manan123 

You can add the followings:

1. Go to your theme editor

2. From Theme Settings click Custom CSS

3. Paste the below code there:

 

 

@media screen and (max-width: 600px) {
  .header__icon .header__icon--account {
    display: none !important;
  }
}

 

 

Joy Matubber | Brain Station 23
 - Was my reply helpful? Click Like to let me know! 
 - Was your question answered? Mark it as an Accepted Solution

 

Brain Station 23 PLC (Mail: [email protected])
- Was your question answered? Mark it as an Accepted Solution
- Did the solution not address your concern? We kindly request that share or mail your store URL with us this will enable us to collaborate more closely.
- Explore our Shopify public apps