Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1055125

    armintz
    Participant

    i’m using the X mailchimp add-on and i’m using the following code to put the signup widget (on my home page only) on a single line:

    /* MAILCHIMP ON ONE LINE */
    
    .page-id-50 .x-subscribe-form fieldset {
        display: inline-block;
        vertical-align: top;
    }
    
    .page-id-50 .x-subscribe-form fieldset input.submit.x-btn {
        margin-top:0;
    }

    the issue is that the vertical alignment of the sign up box is not aligned with the submit button. is there a simple way to vertically center the sign up box so that it looks nicer?

    site: http://tinyurl.com/jxmep6d

    thanks

    #1055695

    Rue Nel
    Moderator

    Hello There,

    Thanks for writing in! To resolve this issue and make sure that the submit button will always be align to the input field, please have your css updated and make use of this code instead:

    /* MAILCHIMP ON ONE LINE */
    
    .page-id-50 .x-subscribe-form fieldset {
        display: inline-block;
        vertical-align: top;
    }
    
    .page-id-50 .x-subscribe-form fieldset input.submit.x-btn {
        margin-top:0;
        padding: 10px;
    }

    Hope this helps. Please let us know how it goes.

    #1056153

    armintz
    Participant

    adding padding: 10px; did it – thank you.

    #1056315

    Joao
    Moderator

    Great to hear it.

    Let us know if we can help with anything else.

    Joao