If you add a color to the .slider
class in your css (as you may already know) it will change all of the text in that particular widget. You can however, add paragraph tags around the text that you want to show up as a different color, so that it only affects that particular text. First you’ll need to add the css like this –
.slider p {
color: #fff;
}
And then you’ll need to add the paragraph tags before and after like this – <p>text goes here</p>
This will trigger the above css and show your text in white.