Hi there,
I have a few questions:
- I’m trying to change the font size of H1, H2, H3, H4, H5 and H6 on my wordpress page.
Untill now I have tried these CSS codes inside customizer–>Custom–>global CSS:
h1, .h1 {
font-size: 6em !important;
}
h2, .h2 {
font-size: 5em !important;
}
h3, .h3 {
font-size: 4em;
}
h4, .h4 {
font-size: 3em;
}
h5, .h5 {
font-size: 2em;
}
h6, .h6 {
font-size: 1em;
}
But sadly it doesn’t work in my configuration somehow.
- I also want to change the size of the title page, if this can be changed seperately.
I tried this code, which didn’t work as well for me:
.entry-title a {
font-size: 7em;
}
- Also I would like to change the (white) spacing between: different alineas, header and text (below) and between page title and text
Any help will be much appreciated. Thank you.