Email Form Subscription

When using ‘email forms’ in Pro, is there a way to have it purely horizontal instead of vertical and to tweak the button so it doesn’t have shadowing on it?

Many thanks

Site: http://stage.cityhearts.live-website.com

Hi Adam,

Thanks for writing in. I see that you have already added some custom css. Try adding this css too.

.tco-subscribe-form fieldset {
    display: inline-block;
}

.tco-subscribe-form fieldset input[type="text"], 
.tco-subscribe-form fieldset input[type="email"], 
.tco-subscribe-form fieldset input[type="submit"] {
    margin-bottom: 0;
}

.tco-subscribe-form fieldset input[type="submit"] {
    text-shadow: none !important;
    margin-top: 0;
}

Hope it works.

1 Like

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