CMS Development

SPHolmes
Member

GDPR formatting

SOLVE

Hi folks, i'm having some issues with the GDPR notification on a landing page:

https://partners.arquella.co.uk/smart-nurse-call-0

 

As you can see, the check box is separate from the 'i agree' copy.

 

Does anyone know how I can bring them back together without having to left justify the form?

0 Upvotes
1 Accepted solution
dennisedson
Solution
HubSpot Product Team
HubSpot Product Team

GDPR formatting

SOLVE

Hi @SPHolmes !

Apologies for delayed response!

This code is the offender:

#hs_cos_wrapper_module_1610360915223131 .hs-form-field {
    text-align: CENTER !important;
}

So you will need to target that paragraph in the consent

#hs_cos_wrapper_module_1610360915223131 .legal-consent-container .hs-form-booleancheckbox-display span{
    text-align: left !important;
}

should do the trick 😃

View solution in original post

0 Upvotes
3 Replies 3
SPHolmes
Member

GDPR formatting

SOLVE

Thank you. I now have another GDPR formatting issue to do with text size. I have resolved this one in the past using some code someone else posted on the community but it's not working.
This is my landing page - https://partners.arquella.co.uk/task-orientated-to-person-centred-care. All I want to do is reduce the size of the GDPR copy to 6 or 8 but I can't figure it out.

 

Any ideas?

0 Upvotes
dennisedson
HubSpot Product Team
HubSpot Product Team

GDPR formatting

SOLVE

@SPHolmes 

Something like this should work

.legal-consent-container p{
  font-size: 8px !important;
}

 

0 Upvotes
dennisedson
Solution
HubSpot Product Team
HubSpot Product Team

GDPR formatting

SOLVE

Hi @SPHolmes !

Apologies for delayed response!

This code is the offender:

#hs_cos_wrapper_module_1610360915223131 .hs-form-field {
    text-align: CENTER !important;
}

So you will need to target that paragraph in the consent

#hs_cos_wrapper_module_1610360915223131 .legal-consent-container .hs-form-booleancheckbox-display span{
    text-align: left !important;
}

should do the trick 😃

0 Upvotes