Reply To: WP Fedaro - Stupid question

Home Forums Support WP Fedaro - Stupid question Reply To: WP Fedaro - Stupid question


“Yeah, I eventually figured that out but it wasn’t working after I changed it — even after closing browsers, clearing cache, trying a different computer. I think compiling LESS finally sorted it but I cannot confirm that.”

Just submit private question here https://warptheme.com/member-area/ticket-system/ I will help you check it.

1) How do I stop heading styles (h1..h6) from using uppercase?

You can use css method like so

h1, h2, h3, h4, h5 {
    text-transform: none;
}

just add to custom.css file located at wp-root/wp-content/themes/fedaro_wp_pro/css/custom.css

2) When I have text formatted bold + italic, the text color is hot pink. How do I set to use the normal text color and only apply the font-style?

You can set em color like

em {
    color: #ccc;
}