• Resolved Suzy123

    (@suzy123)


    So the form fields show on the site, but the button is INVISIBLE… how do I fix that?
    http://www.angelcupcakes.co.za/goldenrecruits/

    <div class=”stm_newsletter_form”>
    <input type=”text” name=”FNAME” placeholder=”First Name” required>
    <br>
    <input type=”text” name=”LNAME” placeholder=”Last Name” required>
    <br>
    <input class=”form-control” type=”email” name=”EMAIL” placeholder=”Enter Your E-mail” required />
    <br>

    <p>
    <input type=”submit” value=”Subscribe”>
    </p>
    </div>

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Lap

    (@lapzor)

    Hi,

    Your theme adds some CSS to change the looks of our form and the hide the button.

    Here is some CSS to overwrite their CSS again:

    .mc4wp-form input[type=”submit”] {
    visibility: visible !important;
    position: relative !important;
    }

    You can add this CSS to your (child)themes CSS or via a plugin like “Simple Custom CSS”.

    Hope that helps.

    Thread Starter Suzy123

    (@suzy123)

    We have a winner! You rock! Thank you so much

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

The topic ‘Form Submit button invisible’ is closed to new replies.