Hi – when I updated the Easy Forms for MailChimp by YIKES plugin tonight, it erased my css edits. How can I prevent this in the future?
If you’re already using WordPress’s official Jetpack plugin, then you should activate its Custom CSS module and add your styles in Appearance > Edit CSS.
If you don’t like using Jetpack, then you can install Simple Custom CSS plugin and add your styles in Appearance > Custom CSS.
Also, when I re-entered the CSS above for the form, it changed the width of the input fields, but they are still too large. How can I make them smaller? Sorry!
You mean the codes in the previous post? You can change the numbers as you see fit. I provided an explanation to each one right below the codes.
The width: 80%
line is the width of the form on mobile devices. The width: 60%
is the width on desktops. You probably want to reduce the 60% down to 40% or so.
Lastly, regarding the mailing list popup that appears 8 seconds after you view the site…
Your mailing popup isn’t working on my Google Chrome web browser. I’m on OS X El Capitan (version 10.11.3), using Google Chrome version 49.0.2623.75 (64-bit).
It works on the latest version of Firefox & Safari though. Haven’t tested on Edge and IE yet.
Lastly, regarding the mailing list popup that appears 8 seconds after you view the site…when we changed the Mailchimp form, it also seems to change that form on the pop-up. I have since changed the form id to use 1 on the footer mailing list sign up and ID 2 for the pop-up mailing list sign up. But on an iPad, it looks strange. On an iPhone 5, it looks fine. Any ideas why? Please see attached screenshots.
It’s because the width set at min-width: 768px of that is 20%. The code below switch that to 50%. The max-width line is optional; it indicates the maximum possible width that that form will extend to.
@media screen and (min-width: 768px) {
.popmake.size-micro {
width: 50%;
max-width: 600px;
}
}