• Resolved kellymarket

    (@kellymarket)


    How can I get the signup form to look exactly like the form in the screenshot?

    I’ve activated the plugin and settings, but my form is displaying the sign up box underneath the box where one would add an email address. The email address box also has rounded corners, the second box does not. I would love for it to look identical to the one in the screenshot – boxes flush against each other both boxes 90 degree corners.

    Thanks so much!

    http://wordpress.org/plugins/mailchimp-sign-up/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author WPTrashPanda

    (@jprescher)

    You may have some styles of your own that are overriding the plugin styles. First make sure that under settings the CSS Class: is set to mcForm. Then try adding this to your style sheet:

    .mcForm{
      font-size:1.3em;
      }
    
    .mcForm input[type=text]{
      font-family: 'Roboto', sans-serif;
      padding:10px 10px 10px 10px!important;
      position:relative;
      top:7px;
      color:#777;
        width:60%!important;
    }
    
    .mcForm input[type=submit]{
      padding:10px!important;
      position:relative;
     top:7px;
        left:-10px;
        font-family: 'Roboto', sans-serif;
        background-color:#006FB8!important;
      font-weight:500!important;
    }
    
    .mcForm input[type=submit]:hover{
    
        background-color:#2A83BE!important;
      color:#fff;
    
    }

    You can set any class you want and then use the !important tag to override any of the plugin settings as well.

    Thread Starter kellymarket

    (@kellymarket)

    Hi Jason,

    Thanks so much for your help. Unfortunately, neither one worked. The class was already set to mcForm and when I added that to the style sheet, it looked very similar to how I previously described the problem (2 separate boxes one on top of another, boxes do not have square corners).

    Do you have any other ideas?

    Here’s the link to my page if that helps:
    http://69.89.27.245/~kellymb2/

    The markup you just sent is currently on there.

    Thanks again!

    Plugin Author WPTrashPanda

    (@jprescher)

    Your template looks like it has some responsive calls maybe even using javascript to override the css classes. I tried to override the styles you had with no luck. Try renaming the class in the plugin settings to something unique. With any luck it will just use your themes default form settings.

    This has got to be the hardest form to style. A separate CSS stylesheet would be great. But good work for those willing.

    Plugin Author WPTrashPanda

    (@jprescher)

    Use the CSS !important tag. That should do the trick 😉

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘appearance’ is closed to new replies.