Viewing 1 replies (of 1 total)
  • Hi there nutsonshells,

    Thanks for posting and providing me with your URL so I could take a look. It appears that there might be some CSS missing which usually accompanies the widget for this plugin. I’m not sure why it’s not present on your page here, but the CSS begins with <style> #mc_signup_form and will generally be present inline directly before <div id="mc_signup">.

    What I would recommend doing would be to replace the existing mailchimp_widget.php file in your plugin install with a brand new version, which will include that inline CSS. This could also be accomplished by fully uninstalling, deleting, and reinstalling the plugin as well.

    Alternately, making sure that this CSS is present somewhere on the page will make the field label and input field appear on two separate lines (rather than the same line as they currently appear):

    <style>
    .mc_var_label,
    .mc_interest_label {
    display: block;
    }
    .mc_input {
    display: block;
    }
    </style>

    Let me know if there’s anything further I can help with!

    -Kath

Viewing 1 replies (of 1 total)
  • The topic ‘how to style form’ is closed to new replies.