Hi!
I would like the mailchimp sign up fields to appear in the center but I can’t seem to do so.
Thank you so much for your help.
Hey Shawnlimws,
Add the following to quick css:
@media only screen and (min-width: 479px) {
.avia-mailchimp-form{
width:190%!important;
}
}
Best regards,
Jordan Shannon
is there a way to do it without increasing the width of the boxes?
Hi,
Add the following to quick css:
@media only screen and (min-width: 1200px) {
.avia-builder-el-28 {
width: 1200px!important;
margin: 0 150px!important;
}
}
@media only screen and (max-width: 1200px) and (min-width: 996px) {
.avia-builder-el-28 {
width: 1200px!important;
margin: 0 130px!important;
}
}
@media only screen and (max-width: 996px) and (min-width: 767px) {
.avia-builder-el-28 {
width: 1200px!important;
margin: 0 90px!important;
}
}
@media only screen and (max-width: 767px) and (min-width: 479px) {
.avia-builder-el-28 {
width: 1200px!important;
margin: 0 40px!important;
}
}
Best regards,
Jordan Shannon