Ticket for: Accordions
0
scott6
I have 2 accordions on one site - both have the same style settings but display different fonts. No matter the setting one shows Serif and can't be changed. Is there a place outside the plugin 'style' screen to change fonts and style. When I try inline styles they are over ridden. Customize does the same.
2 Subscribers


Submit Answer
1 Answers
Best Answer
0

You can write custom CSS to change the family.
First, go to the Edit mode of your accordion.
Then copy the CSS code below and paste it under Custom scripts => Custom CSS option.
Screenshot: https://ibb.co/Bt1Cs4R
Code to copy:
.accordions .accordion-content{
font-family: sans-serif !important;
}
Hello Azizul – Thanks for your quick reply. The code worked. Much thanks!