TechSkull

Go have some coffee… we’ll worry about your web site.

You are currently browsing the FIx category.

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;
}

Posted 1 month, 3 weeks ago.

1 comment