Tagged: font-size, h1 font size, h1 size, h2 font size, h2 size, heading font size, heading size
Hi, how can I change the headings H2 an H3 font size? In my site H2 Heading is bigger than the title. Thanks.
Hi there,
You can add custom CSS code as below example. Just change the digit value below to change the font size for specific heading and add below custom CSS code.
h1 { font-size: 20px; }
h2 { font-size: 18px; }
h3 { font-size: 16px; }
Thank you!
Thank you so much!