Avada › Forums › Community Forum › How to change the footer widget title to lowercase
Tagged: footer, custom css, widget, titles, lowercase, uppercase, capitalize
-
AuthorPosts
-
Hi, I am trying to make the footer widget titles on my site lowercase, as they default to uppercase. I’ve tried 7 or 8 custom CSS combinations and searched everywhere in the theme options, and there seems to be no option to make it lowercase. Does anyone know how to change this?
Thanks in advance!
MargaretNever mind, I found the answer, in case anyone else needs it. You need to put this in your custom CSS:
h1, h2, h3, h4, h5, h6 {text-transform: none;}I’ve tried putting this in my custom CSS but it doesn’t work for me.. Any idea how I can solve this?
Put this one in your custom CSS:
.fusion-footer-widget-area .widget-title {text-transform: none;}
I’ve put this is my custom css.. but it doesn’t work. What can I try next?
It worked on mobile, but not on desktop. Can’t figure it out.
Hello @joyceprinsen85,
There could be a CSS conflict or syntax error that’s messing it up on mobile. I’d need to look at your site to try to reproduce the issue on mobile and figure out what’s going on.
In the meantime, you can give this CSS a try.
.widget-title { text-transform: lowercase !important; }
Here’s the test result after applying it to this page.
Thanks!
-
AuthorPosts
- You must be logged in to reply to this topic.