03/08/2013 at 11:50 am
#253449
Keymaster
@ Alison
The issue seems to be with the theme’s style.css on line 454.
.static form {
overflow: hidden;
margin: .5em;
padding-top: 1em;
padding-bottom: 2.5em;
position: relative;
}
Removing overflow: hidden; seems to fix it.
.static form {
margin: .5em;
padding-top: 1em;
padding-bottom: 2.5em;
position: relative;
}