Is there any css code to change H1 font size in text block? Thank you!
Hi
you can overwrite the h1 css to chnage the font size and you can write css in your theme css file as like this:
h1 { font-size: 24px; }
Another option use a classs in the h1 tag and write css for that class as like:
h1.mytitle { font-size: 24px; }
Thanks