After the most recent update, all form fields stretch 100% of the page. I’d like to change them back to how they were to a smaller size. Looking through the forums I found the following recommended fix:
#top input[type="text"] {
width: auto;
}
But that only changed some fields back to normal and left others still at 100% width.
Any ideas?
Thanks,
Tom
Hi tmunz!
Please edit your contact form element and adjust widths – http://i.imgur.com/jmD0zKS.png
Cheers!
Yigit
Hi Yigit,
Sorry, I should have mentioned my forms are created using the Contact Form 7 plugin, so that is not an available option.
Thanks,
Tom
Hey!
Can you please post the link to your website and a screenshot showing the changes you would like to make?
Best regards,
Yigit
Hey!
Please add following code to Quick CSS
div#wpcf7-f2416-o1 {
width: 50%;
}
Best regards,
Yigit
Hey!
Please use following code instead and it should work globally
.wpcf7 {
width: 50%;
}
Regards,
Yigit