It's difficult to say where to add the code without seeing your CMS setup, but generally you should be able to find your stylesheets for your wordpress template and add them in there!
You can't change this by using a HubSpot theme, but if you enable the "raw html form" option in your HubSpot form you can use your own custom styling and you'll be able to change this!
Tom Mahon Technical Consultant | Solutions Engineer | Community Champion Baskey Digitial
@CDunne7 just a quick other workaround which should work. If you set your form to a "raw html form" in your form testing page it will load the html of the form inline with your webpages html so should avoid this issue (depending on your pages styling).
Only drawback of this though is you may need to add some further styling to have your form match the website style!
Tom Mahon Technical Consultant | Solutions Engineer | Community Champion Baskey Digitial
It's difficult to say where to add the code without seeing your CMS setup, but generally you should be able to find your stylesheets for your wordpress template and add them in there!
You can't change this by using a HubSpot theme, but if you enable the "raw html form" option in your HubSpot form you can use your own custom styling and you'll be able to change this!
Tom Mahon Technical Consultant | Solutions Engineer | Community Champion Baskey Digitial
Hey @CDunne7 this would be down to the container or "wrapper" you're putting the form embed code in. When the form is loaded with a HubSpot theme and not a raw HTML form, it loads inside an iframe, which is essentially a window embedded on your page. This iframe pulls it's height from the height of the container it's embedded in when the page loads, it doesn't dynamically determine the height or push the container "higher" if it's too small to display the form. When the container is too small to display the form, the form may appear cutoff like you're seeing.
You'll need to change the CSS from the section you're containing it in to ensure it has enough height on loading to display the form.
It looks like it currently has a "min-height: 1px" rule on it, it might be worth setting that to something a lot bigger for the form container class.
Tom Mahon Technical Consultant | Solutions Engineer | Community Champion Baskey Digitial
It's difficult to say for sure without seeing the overall configuration of your website @CDunne7 but you could try adding something like min-height:450px to the "inline style" section of your module to see if that works!
Tom Mahon Technical Consultant | Solutions Engineer | Community Champion Baskey Digitial