How can I resize/stretch raw content element in the footer?

Hi! I have created a form with WPforms and I have set the field lengths to large, but the fields are still appearing as small, probably due to the raw content element in the container. How can I expand the raw content element so i can resize the field lenght?

image

Hi @Nalwi,

Thanks for reaching out.
To make the form fields width 100% to the column where it resides, you need to add the following custom CSS code to Theme Options > CSS.

div.wpforms-container-full, 
div.wpforms-container-full .wpforms-form *
{
    width: 100%;
}

Remember that the above code will work if copied as it is and don’t conflict with any existing style.
Please note that the code provided serves only as a guide to help you get started custom coding on your own if there’s no option offered in our theme or the products we bundle.
We do not provide support for custom codes that means we can’t fix it in case it conflicts with something on your site nor will we enhance it.

Thanks

Hi, Thanks for your reply. I have added that css code, but there the raw content element is still the same size. I’d like to just expand that raw content element, as the form fields are already set to large.

Hi, I have managed to fix that issue. I used a text element instead of the raw element so I was able to adjust the margins. Thanks!

Hi @Nalwi,

Great that it resolved now.

Thanks

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.