CMS Development

AenghasHP
Participante

Register Here Private Content CSS Space

resolver

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 Avaliação positiva
1 Solução aceita
Jake_Lett
Solução
Orientador(a) | Parceiro
Orientador(a) | Parceiro

Register Here Private Content CSS Space

resolver

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>

 

Exibir solução no post original

0 Avaliação positiva
2 Respostas 2
AenghasHP
Participante

Register Here Private Content CSS Space

resolver

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

Jake_Lett
Solução
Orientador(a) | Parceiro
Orientador(a) | Parceiro

Register Here Private Content CSS Space

resolver

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 Avaliação positiva