(Squarespace) How to change My Account text

To change My Account text, we can use this code to Custom CSS

/* rename login text */
span.auth {
    visibility: hidden;
    font-size: 0px;
    display: flex;
    align-items: center;
}
span.auth:before {
    visibility: visible;
    content: "Member Login";
    display: block;
    font-size: 18px;
}

You can change text here.

1 Like