NiceThemesHow to make font lower case on slide title – NiceThemes http://nicethemeswp.com/forums/topic/how-to-make-font-lower-case-on-slide-title/feed/ Wed, 23 Apr 2025 13:22:32 +0000 http://bbpress.org/?v=2.5.12-6148 en-US http://nicethemeswp.com/forums/topic/how-to-make-font-lower-case-on-slide-title/#post-6143 <![CDATA[How to make font lower case on slide title]]> http://nicethemeswp.com/forums/topic/how-to-make-font-lower-case-on-slide-title/#post-6143 Thu, 30 Jul 2015 15:34:13 +0000 zharris4 What css would I use to make the slide title lowercase?

]]>
http://nicethemeswp.com/forums/topic/how-to-make-font-lower-case-on-slide-title/#post-6147 <![CDATA[Reply To: How to make font lower case on slide title]]> http://nicethemeswp.com/forums/topic/how-to-make-font-lower-case-on-slide-title/#post-6147 Thu, 30 Jul 2015 23:15:54 +0000 Juanfra Aldasoro 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.

]]>