Site logo

Archived topic

reduce size of all headings with css

3 replies · Started by Anil on September 16, 2021

Viewing posts 1–4 of 4

using alpha

I would like to reduce size of all headings (say 90% of default set in theme) without changing individual headings in customizer....

Hi there,

Not sure if I fully understand.

Are you wanting to use CSS instead of the customizer options for some reason?

It's generally not a good idea.

Let me know :)

Yes, I like to use css...

Then do this:

h1 {
    font-size: 20px;
}
h2 {
    font-size: 18px;
}
h3 {
    font-size: 16px;
}
This archived topic is closed to new replies.