Jun 29, 2021 10:57 pm
After searching for the forum for any related topic and trying to work on the CSS code, i still can't make text-transform: capitalize work on my forum.
Other text-transform like uppercase and lowercase are working but this particular one isn't working on the h1 heading why?
I have tried
#wpforo #wpforo-wrap #wpforo-title {
font-size: 30px;
font-weight: bolder;
text-transform: uppercase;
}
4 Replies
Jun 30, 2021 6:53 am
You're putting the CSS code in a wrong place, or you're not deleting the cache properly, make sure you've pressed Ctrl+F5 on forum front-end to reset the browser cache as well and add the !important to then CSS property:
#wpforo #wpforo-wrap #wpforo-title { font-size: 30px; font-weight: bolder; text-transform: uppercase !important; }