Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #809079

    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.

    #809163

    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

    #809179

    is there a way to do it without increasing the width of the boxes?

    #809431

    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

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.