How to Remove Account/Login Icon on mobile device

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

Hello @summer21

This is Amelia at PageFly - Shopify Advanced Page Builder app.

Could you please share the URL link of your store so we can check it for you?

Store url - https://mansaroverfurnishings.com/

You can try the following steps I have provided to help you solve the problem you are facing:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file base.css

Step 3: Add code

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

Hoping my solution helps you solve your problem.

Best regards,

Amelia | PageFly

1 Like

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;
}
}
1 Like

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

want to shift this highlighted option to the upward

Ok it 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.

1 Like