Archived topic
page header / font size
2 replies · Started by tarek on February 17, 2018
hello: how can i specifically change the font size of the text content in the page header (without also changing the font size of the text in the Body)? thanks.
Hi there,
We can either use inline HTML style like:
https://www.w3schools.com/html/html_css.asp
Or if you need to reuse the style a lot and make multiple changes, we can also give it a class:
<p class="page-header">Text here</p>
Then target it with CSS:
p.page-header {
font-size: 20px;
}
Let me know if this makes sense :)
txs will try it..