Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1279527
    imdjluis
    Participant

    I have added the Mail Chimp plug-in but the Submit button text appears left aligned in Safari on OS X and iOS, but is correctly centered in other browsers.

    #1279566
    Friech
    Moderator

    Hi There,

    Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.

    Cheers!

    #1279569
    imdjluis
    Participant
    This reply has been marked as private.
    #1279606
    Rad
    Moderator

    Hi there,

    It’s because of this custom CSS,

    .x-subscribe-form input[type="submit"] {
        display: flex;
        justify-content: center;
        margin: 0 auto;
        max-width: 500px;
        width: 100%;
    }

    Remove it and it should align correctly.

    Thanks!

    #1279608
    imdjluis
    Participant

    I used that to center the submit button itself.

    #1279610
    Rad
    Moderator

    Hi there,

    Yes, but it has an unusual effect on safari browser. If it’s just about aligning it on the center, then try this.

    .x-subscribe-form input[type="submit"] {
        display: block;
        margin: 0 auto;
        max-width: 500px;
        width: 100%;
       clear:both;
       float: none;
    }

    Hope this helps.

    #1279632
    imdjluis
    Participant

    That worked, thank you!

    #1279638
    Christopher
    Moderator

    You’re welcome.

  • <script> jQuery(function($){ $("#no-reply-1279527 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>