To change the color of the slideshow’s headline text and the text/button for the “Read More” area go to Appearance -> Customize/Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code with your own HEX color and Click on save button:
For slideshow’s headline:
.featured-text .featured-title {
color: #fff;
}
For slideshow’s button:
.call-to-action {
border-color: #fff;
color: #fff;
}
And for slideshow’s button hover:
.call-to-action:hover {
background-color: #fff;
color: #666;
}
Thank you!