Register modal - Listing hive theme

Hi,
Is there a snippet to make the register modal appear first instead of the sign in modal?
Users seem to miss the, " Don’t have an account yet? [Register]" link at the bottom of the sign in modal then they complain that they have issues registering. (Most don’t have the patience to read instructions especially if they are not boldly written.)
Thanks

Unfortunately there is no easy way to switch modals, but maybe styling the registration link will help - you can try this CSS snippet:

.hp-form–user-login .hp-form__actions .hp-form__action--user-register{
    text-align: center;
    font-weight: 700;
    font-size: 19px;
}
1 Like

Thanks! This isn’t working though. are we using the right classes?

Please try this CSS snippet instead

.hp-form--user-login .hp-form__actions .hp-form__action--user-register{
    text-align: center;
    font-weight: 700;
    font-size: 19px;
}
4 Likes

Perfect!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.