Hello @acdc20
Thank you for post up your question.
You can right click on the successful message, and inspect to see what class and color are being used.
The success message class is .yikes-easy-mc-success-message
. You can play around with the color
and background-color
. Like this:
.yikes-easy-mc-success-message {
background-color: green;
color: black;
}
You have a few options to add CSS code:
- If you’re using WordPress 4.7 or higher, you can go to Appearance > Customize > Additional CSS and place the code there.
- If you created this theme yourself, you can just add it to your style.css file
- If you’re using a theme you downloaded or bought you can make a child theme and add the code to your child theme’s style.css file
- Your theme may have a “Custom CSS” option. If it does, then you can just pop it in there.
- You can use a plugin like Simple Custom CSS or Jetpack and enter the code in their Custom CSS area
I hope this help!
Sincerely,
Chris Vo