What css would I use to make the slide title lowercase?
Hello,
Thank you for writing. There’s a property in CSS named text-transform and that is used to uppercase the slider caption. http://www.w3schools.com/cssref/pr_text_text-transform.asp
By using a tool like firebug (http://getfirebug.com) you can inspect the website in order to determine what HTML element has the class you need to modify. I’d recommend you to check out that extension. For the particular case of the slider caption, it is .flex-caption h2.
So, in order to change that, you’ll need to use a CSS like this one (in the custom.css file or the “Custom CSS” field within your theme options panel):
.flex-caption h2 {
text-transform: lowercase;
}
Best,
Juan.