Archived topic
Font Size Change
10 replies · Started by Suman on December 8, 2022
I have used an external plugin to create a FAQ section on my experimental domain majesticabodes.com
I am unable to change the title font size. Please guide me on how I can do it.
Hi there,
try adding this CSS to your site:
.wpsm_panel-group .wpsm_panel-title {
font-size: 24px;
font-weight: 700;
}
Thank you, it worked. I wanted to change the font to Roboto. How can I do that?
That plugin has some terrible CSS lol
Try adding this, it includes the accordion text too:
.wpsm_panel-group *,
#page .wpsm_panel-group div.wpsm_panel-body {
font-family: Roboto, sans-serif !important;
}
Thank you. It would've been great if generateblocks had the accordion feature. Using 3rd party plugin is a waste of time.
The plugin was having issues so I changed to another one. Now I am facing the same problem. I am unable to increase the font size of the header.
Can you please help.
This CSS:
#page .eb-accordion-container .eb-accordion-title {
font-size: 30px;
}
Accordions and Tabs will be a feature in the next version of GenerateBlocks Pro. We expect to release an alpha version before the end of December.
I want to bold the text as well. Can you please guide me on how to do that?
Thank you.
Try this instead:
#page .eb-accordion-container .eb-accordion-title {
font-size: 30px;
font-weight: 700;
}
Thank you, it worked.
Glad to hear that