In Email Forms Can You Align The Subscribe Button to the Right of Email Address Field

Hi, I’m just doing a website and I’ve used the Email Forms plugin - I haven’t used it before - and I’d like the Subscribe button to the right of the email address field instead of them being on separate lines. Is this doable? I’ve got a maintenance page up at the moment so I’ll put the login details in a secure note so you can view the site.

Hope you can help!

Thanks!

Hi there,

Please try to add this code:

#tco-subscribe-form-106 fieldset:nth-child(3) {
    display: inline-block;
}

#tco-subscribe-form-106 fieldset:nth-child(4),
#tco-subscribe-form-106 fieldset:nth-child(5) {
    display: none;
}

#tco-subscribe-form-106 fieldset:nth-child(6) {
    display: inline-block;
    top: -12px;
    position: relative;
}

#tco-subscribe-form-106 {
    max-width: 480px !important;
}

.tco-subscribe-form input[type="submit"] {
    margin-top: 0;
    padding: 0.55em 0.85em 0.55em;
    font-size: 105%;
}

Hope this helps.

Brilliant! Thank you so much!

You’re most welcome.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.