March 2, 2016 at 10:05 am
#7847
Ernest Marcinko
Keymaster
Hi Paul,
It’s a bit hard to tell wihtout actually seeing the problem, but from what I see on the screenshot I’m guessing that the theme probably applies a higher specificity margin, padding or line height to input fields, including the plugin input.
If that’s the case, then this custom CSS snippet should solve the problem:
[html]input.orig {
margin: -1px 0 0 -4px !important;
padding: 0 !important;
padding-top: 2px !important;
line-height: normal !important;
}[/html]
Let me know how it goes!