How do I change the Header Size
I have Hello Beaches and the H3 header size is too small. I know I should use an H1 but I want the themes font and that’s the only header that has it. How can I make it bigger?
1 Answers
	Two ways of doing it, if you go to your style sheet on line 395 you will see this
 
h3 {
font-size: 4.0rem;
font-family: ‘SLB’;
font-weight: normal;
}
 
You can adjust that font size to a larger size, maybe 5.0rem for 50px.
 
Or you can go to your additional css in the customizer and add this
 
h3 {
font-size: 5.0rem;
}
 
Let me know if you need any help and we can hop on and make the adjustment.
Please login or Register to submit your answer
