• Resolved markhem

    (@markhem)


    I’ve been trying to move the submit button beside the email input box, following various solutions found in this forum, but I can’t seem to get it to move beside the email input. The submit button just smushes up against the bottom of the email input box. The selector I’ve been using is;

    .mc4wp-form input[type="email"] {
      float: left;
      min-width: 0px !important;
      width: 40%;
    }

    I have also tried various versions of things, but I its not working for me.
    The forum has other selectors, but the plugin documentation says to use
    .mc4wp-form input[type="email"]

    I use a child of twenty twelve.
    https://www.claynet.ca/

Viewing 1 replies (of 1 total)
  • Thread Starter markhem

    (@markhem)

    Figured it out. Used

    #mc4wp_email  {
       float: left;
    min-width: 0px !important;
    width: 70%;
    }
    
    .mc4wp-form input[type="submit"], .mc4wp-form button {
        cursor: pointer;
        display: inline-block;
    	margin-left: 10px;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: MailChimp for WordPress] Submit button beside email box’ is closed to new replies.