Home Forums WoodMart support forum Newsletter form

Newsletter form

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #339225

    Koshox
    Participant

    I am trying to setup my homepage with the newsletter form similar to the demo. However, for some reason the sign up button appears underneath the email address form, and the box is too long/not centered. How do i fix it so the button is to the right of the box like in the demo?

    Attachments:
    You must be logged in to view attached files.
    #339493

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    .wpb_content_element .mc4wp-form>div {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        margin-right: -3px;
        margin-left: -3px;
    }
    .wpb_content_element .mc4wp-form>div>p {
        margin-bottom: 10px!important;
        margin-right: 3px;
        margin-left: 3px;
    }
    .mc4wp-form input[type="submit"] {
        padding-right: 35px;
        padding-left: 35px;
    	margin-top:30px;
    }

    Best Regards

Viewing 2 posts - 1 through 2 (of 2 total)