CMS Development

AenghasHP
Participant

Register Here Private Content CSS Space

SOLVE

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.

0 Upvotes
1 Accepted solution
Jake_Lett
Solution
Guide | Partner
Guide | Partner

Register Here Private Content CSS Space

SOLVE

You could add page level css styles to make this adjustment. 

https://knowledge.hubspot.com/website-pages/add-code-to-the-head-or-footer-html-of-hubspot-content#a...

<style>div#hs-login-self-registration-link {
    margin:1rem 0;
}
div#hs-login-self-registration-link a {
    margin-left:0.5rem;
}
</style>

 

View solution in original post

0 Upvotes
2 Replies 2
AenghasHP
Participant

Register Here Private Content CSS Space

SOLVE

That's done the trick, thank you very much!

Jake_Lett
Solution
Guide | Partner
Guide | Partner

Register Here Private Content CSS Space

SOLVE

You could add page level css styles to make this adjustment. 

https://knowledge.hubspot.com/website-pages/add-code-to-the-head-or-footer-html-of-hubspot-content#a...

<style>div#hs-login-self-registration-link {
    margin:1rem 0;
}
div#hs-login-self-registration-link a {
    margin-left:0.5rem;
}
</style>

 

0 Upvotes