How can I change the Plug In header font size?
THanks,
Ken
PLug In
Re: PLug In
Hi Ken,
the plugins have an own css class admidio-plugin-content and the headlines have the html tag h3
So you could do it in the css file with the following code:
Best regards
Fasse
the plugins have an own css class admidio-plugin-content and the headlines have the html tag h3
So you could do it in the css file with the following code:
Code: Alles auswählen
.admidio-plugin-content h3 {
font-size: 75%;
}
Fasse