Account Button from Header (on desktop and mobile) - Venture Template

How do I remove/hide it without disabling customer accounts an I’m using the venture theme - www.xelcustomcycles.com

Thank you

Hi and welcome!

Add these to the bottom of your theme.css file:

li.drawer__nav-item:last-child {
    display: none;
}

.customer-login-links.sticky-hidden {
    display: none;
}

Hi @XELCustoms

Please add this code in theme.scss.css bottom of the file

//For desktop
.customer-login-links {
    display: none;
}

//for other devices
@media only screen and (max-width: 1011px) {
  #NavDrawer ul.drawer__nav li:nth-last-child(1) {
    display: none;
}
}

Please like and accept the solution

Thank you