Reply To: site alignment strange on phone

Support Forums Verde – WP Plugin site alignment strange on phone Reply To: site alignment strange on phone

#4740
CreaboxThemes
Keymaster

Hi,

to fix the problem with the subscription form, you can add the next code in the option Custom CSS in the page Verde Plugin > Options:

@media (max-width: 767px) {
input.email,
input.email:hover {
width: 100%;
padding: 10px 0px;
}
.btn{
width: 100%;
margin: 0 auto;
}
.btn .singup-text{
top: 8px;
left: 0;
width: 100%;
margin: 0 auto;
}
.btn .singup-image{
top: -25px;
left: 0;
width: 100%;
margin: 0 auto;
}
.btn:hover .singup-text{
left: 0;
top: 50px;
}
.btn:hover .singup-image{
left: 0;
top: 8px;
}
}