What is the class or other element that controls how the fonts are styled in the toggle header? I’d like to add a line of custom css to change it’s colour, weight, etc., while leaving the text in the expanded box below untouched.
Hi m!
You can use this on your custom.css or Quick CSS:
.js_active .toggler {
font-size: 14px;
font-weight: bold;
color: blue !important;
}
Cheers!
Ismael
Awesome, thanks!