09/14/2016 at 9:25 am
#391194
Keymaster
@ Brad
Generally this only ever occurs if the theme applies unusual default values to images globally.
Let me take a look…
Ok, the theme has a CSS media query which sets all submit buttons to 49px @ 100% width of its containing item. This is the CSS:
@media only screen and (min-width: 600px)
textarea, input[type="text"], input[type="submit"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], select {
min-height: 49px;
max-width: 100%;
min-width: 100%;
}
Since this is applied globally instead of limited to the theme’s submit button, it will likely cause other minor display glitches in other plugins too. Add the following to the theme’s custom CSS area and that should fix it up. I’m going to add this tweak to the next update too so it’ll fix any other theme’s that st the min/max widths globally to inputs.
#cn-list span input,
#cn-list span input[type=text] {
min-width: 0;
max-width: 100%;
}
Hope that helps!