Three quick questions …
1. Is there some quick CSS code that I can add so my Masonry Blog landing page to remove the date and only display the post title? (http://800.9e8.myftpupload.com/blog/)
2. And how do I control the Title text color in the footer area? Is there some CSS code that I can add that will only affect this area? (http://800.9e8.myftpupload.com)
3. I am using the MailChimp for WordPress Pro plugin and the buttons display as squared off corners instead of the typical round Enfold corners. How can I change this? (http://800.9e8.myftpupload.com in the blue band at top and in footer on this page)
Thanks!
Hi John!
1. Add this to your custom CSS.
.av-masonry-date { display: none !important; }
2. Try this.
#footer .widgettitle { color: red !important; }
3. Add this.
.mc4wp-form * {
border-radius: 4px !important;
}
If you only want it on the button then do this instead.
.mc4wp-form input[type="submit"] { border-radius: 4px !important; }
Cheers!
Elliott
Amazing response time Elliott! Thank you!!
This worked great for my button issue:
.mc4wp-form * {
border-radius: 4px !important;
}
Is there a snippet I can add to control the background color of the button?
Hi!
Try adding this to your Quick CSS:
.mc4wp-form input[type="submit"] {
background-color:red !important;
}
Please replace red with the colour of your choice.
Best regards,
Rikard
Great, thanks!
It also looks like my button font size is not the same as all other buttons. Is there code to correct this?