Objective: I want to modify the background color of the "Subscribe" button on a MailChimp embedded sign-up form found on our company's website page.
Query: MailChimp provides the CSS hook "input.button" for styling the Subscribe button. How can I utilize this CSS to overwrite the existing styles?
The specific page that needs editing is located here:
This is how the button is coded within the HTML of the page:
<div class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
Unfortunately, I don't seem to have access to the stylesheet used by MailChimp to generate the embed code (). Here are the styles defined in the MailChimp stylesheet:
#mc_embed_signup .button {clear:both; background-color: #aaa; border: 0 none; border-radius:4px; color: #FFFFFF; cursor: pointer; display: inline-block; font-size:15px; font-weight: bold; height: 32px; line-height: 32px; margin: 0 5px 10px 0; padding: 0 22px; text-align: center; text-decoration: none; vertical-align: top; white-space: nowrap; width: auto;}
I appreciate any assistance provided. Thank you!