Contact Form 7 field input width issue
There is an issue with the width of the text fields in Contact Form 7 that occurs when the plugin “all-category-seo-updater” is also installed.
The style sheet for the seo plugin is here all-category-seo-updater/css/allCategorySeoUpdater.css
The first line is
input[type=text]{
width:300px;
}
Editing that plugin’s css is not ideal because it will potentially be overwritten during future updates.
To remedy this, I opted instead to modify the theme’s style.css file instead.
In this particular case, it was causing a problem with fields in the sidebar, so I added:
#sidebar input[type=text]{
width:240px;
}