You can style an HTML embed form in Webflow even if the client-provided code doesn’t come with built-in styling. You’ll need to target and override the default styles using custom CSS in Webflow.
<input class="xyz-contact">
or <form id="applyForm">
).Go to Page Settings (or open the Embed custom code again).
Use a <style>
tag within a Webflow Embed block or in the Page Settings → Before
tag section.
Write CSS targeting the embedded elements. Example:
<style> #applyForm input { width: 100%; padding: 10px; border: 1px solid #ccc; } </style>
You can add styling for other elements like textarea
, button
, .form-label
, etc.
.job-form-wrapper
, then use .job-form-wrapper input
to avoid global overrides).To style a client-provided HTML embed form in Webflow, inspect the form’s elements and apply custom CSS through the Embed element or Page Settings. Target the form fields using specific selectors, and isolate styles to avoid conflicts.