Somethign in the theme is preventing my submit button to show up on the form on this page http://www.enmodeaffaires.com/infolettre/
http://imaginationseverything.com/thanks/ you can see the same code on a different theme works
the button is inside a div container with the class “clear”
looking at your site, the class is setting the height/width to 0 and sets the visibility to hidden:
.clear {
clear: both;
display: block;
overflow: hidden;
visibility: hidden;
width: 0px;
height: 0px;
}
Hey!
Try adding to the Quick CSS:
#mc_embed_signup .clear {
display: block;
visibility: visible;
height: auto;
width: auto;
}
Cheers!
Josue
thanks that worked
You are welcome, glad we could help :)
Regards,
Josue