Create account

Hello everyone

I want to add forget password and Create Account link, how do i do? and on my mobile vision there is no account button In the upper right corner, how do i show it thank you

Here is my web https://7dd6bf-4c.myshopify.com/

Hello @tabny

  1. I want to add forget password and Create Account link, how do i do?
    this require custom coding to add the forget password and create account link.

  2. on my mobile vision there is no account button In the upper right corner

Go to online store ---------> themes --------------> actions ------> edit code------->base.CSS------> 423
and delete this code

@media screen and (max-width: 749px) {
.small-hide {
display: none !important;
}
}

and the result will be

If this was helpful, hit the like button and mark the job as completed.
Thanks

@tabny Hey, thanks for posting here.
please add this code in header section side area (custom CSS)

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

I hope it will help you, so please mark it as solved. thanks

customizer: