Hey there,
Thanks for posting. In taking a look at the site in question, I wasn’t able to locate the WordPress plugin’s form on the site, but I did see the MailChimp embed code in the sidebar.
It’s worth noting that our support on the embed code is very limited, as our focus in this forum is specifically with the WordPress plugin’s form. However, I was able to take a look at the form code to see what was causing the missing subscribe button on your site. It looks like there’s a CSS conflict with the ‘class=”clear”‘ on the subscribe button in the embed code.
To resolve this issue, return to the area of your site where you added the MailChimp embed code, locate in the code the Subscribe button, and remove the the class=”clear” from the div around the subscribe button.
So, your code currently:
<div class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
should be:
<div><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button"></div>