Column content misaligned and not spanning full width

I have tried messing with the padding and margins to no avail. My titles will not line up with each other, and the contact form is very narrow - not spanning the full column.

Site page: http://devsite.expressbooksellers.com/get-in-touch-2/

Please help!

Hi there,

Please add the class mtn to the contact us headline.

Then add this code in the custom CSS:

div.wpforms-container-full .wpforms-form input.wpforms-field-medium, div.wpforms-container-full .wpforms-form select.wpforms-field-medium, div.wpforms-container-full .wpforms-form .wpforms-field-row.wpforms-field-medium {
    max-width: 100%;
}

Hope this helps.

Hmmm. It appears to have helped with all but the first and last name fields, but it doesn’t show up in the live view (once I’m not logged in…)
I checked an incognito window and it doesn’t look like anything has changed.

http://devsite.expressbooksellers.com/get-in-touch-2/

Hi there,

The piece of code my colleague gave will work if you force with the !important directive. Please kindly update the code:

div.wpforms-container-full .wpforms-form input.wpforms-field-medium, div.wpforms-container-full .wpforms-form select.wpforms-field-medium, div.wpforms-container-full .wpforms-form .wpforms-field-row.wpforms-field-medium {
    max-width: 100% !important;
}

Don’t forget to clear all caches if you have a cache plugin and clear your browser cache.

Thank you.

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