Hi– Still love this theme! Website in reply. I have an email capture box under my layerslider that is set in the main content on the front page. It has an image background, so I think that might be affecting it, but it is not resizing smaller when I go to a smaller mobile phone screen width. Is there css I can enter to enable this to be responsive that is not going to mess up the rest of the page (rest of page looks fantastic)?
Thanks for all your help and the stellar support!
Angie
Hey!
There is a left margin that is pushing the form to outer right of the website when viewing on smaller screens. You can use media queries to adjust the left margin on different sizes:
@media only screen and (min-width: 768px) {
#mc_embed_signup {
margin-left: 250px;
}
}
Cheers!
Ismael