Scrolling text box in HubSpot form

Hi @paolo_scanlon,

while you could use a rich-text for this I wouldn’t recommend it for one simple reason: If you have to update the legal text at a point in the future, you would need to edit every form manually and this can become quite a work. Also there are quite a few other options that would eliminate the “manually editing need” of every form but - why reinvent the wheel? :grin:

The easiest solution would be to add following lines to your CSS:

form .legal-consent-container .hs-richtext {
 height: 50px; {# set the height the "viewable" box should have #}
 overflow-y: scroll; {# enable the scroll option #}
}

done

best,

Anton