How can I remove the login button from my website?

Solved

How can I remove the login button from my website?

christian_russo
Trailblazer
215 1 45

hi everyone 

 

is it possible to delete this icon for log in?

 

www.gallerychristian.com

password: Christianshop123

Schermafbeelding 2022-03-22 om 14.46.54.png

 

thanks 

Accepted Solution (1)

AvadaCommerce
Shopify Partner
3879 840 996

This is an accepted solution.

Hi @christian_russo ,

 

You can follow the instruction below:

1. Go to Online Store->Theme->Edit code
2. Asset->/component-menu-drawer.css->paste below code at the bottom of the file:

.menu-drawer__utility-links {
    display: none !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

banned

View solution in original post

Replies 2 (2)

AvadaCommerce
Shopify Partner
3879 840 996

This is an accepted solution.

Hi @christian_russo ,

 

You can follow the instruction below:

1. Go to Online Store->Theme->Edit code
2. Asset->/component-menu-drawer.css->paste below code at the bottom of the file:

.menu-drawer__utility-links {
    display: none !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

banned
christian_russo
Trailblazer
215 1 45

thanks!