10 27, 2022 8:21 PM
Hi,
I'm trying to code our login page (https://npaq.redunion.com.au/_hcms/mem/login) and see that the text near the bottom appears as:
"Don't have an account?Register here."
Ideally, I'd like a space between the ? and the R but for some reason that particular text isn't in the HTML module.
I think it's tied to having "allow self-registration" checked under the private content settings. The issue is that I don't know what code controls the CSS for that particular space.
Any help would be much appreciated.
解決済! 解決策の投稿を見る。
10 27, 2022 8:35 PM
You could add page level css styles to make this adjustment.
<style>div#hs-login-self-registration-link {
margin:1rem 0;
}
div#hs-login-self-registration-link a {
margin-left:0.5rem;
}
</style>
10 28, 2022 2:30 AM
That's done the trick, thank you very much!
10 27, 2022 8:35 PM
You could add page level css styles to make this adjustment.
<style>div#hs-login-self-registration-link {
margin:1rem 0;
}
div#hs-login-self-registration-link a {
margin-left:0.5rem;
}
</style>