Change text color in "Subscribe Now" widget
How do I change the text color from gray to white on the Subscribe Now widget? It's super hard to read against the black!
http://meagandavenport.com is my website.
http://meagandavenport.com is my website.
Tagged:
Comments
To change the widget text to white you can add custom css under Newsletters>Configuration - Theme, Scripts & Custom Css
or edit the stylesheet wp-mailinglist/views/*themefolder*/style.css
If you make changes to your stylesheet, please add it to a child theme folder. http://tribulant.com/docs/wordpress-mailing-list-plugin/7890
Add the following.
.widget-title, .newsletters h3 {
color: white;
}
Regards
Marietha
Did you manage to change the styling accordingly?