I am trying to change my blog title size in relation to the H1 H2 etc on the page. I found out how to change those settings in CSS on this forum (with the CSS below) but these don’t impact the size of the main title. How do I change the main title size?
h1, .h1 {
font-size: 5em;
}
h2, .h2 {
font-size: 4em;
}
h3, .h3 {
font-size: 3em;
}
h4, .h4 {
font-size: 2em;
}
h5, .h5 {
font-size: 2em;
}
h6, .h6 {
font-size: 1em;
}