Hi @bentkieran,
Regretfully, there are currently no options available in Theme Options, where you can set the global size for the headings but you can do it by adding the following CSS blocks in Pro/X > Theme Options > CSS
h1, .h1 {
font-size: 30px;
}
h2, .h2 {
font-size: 28px;
}
h3, .h3 {
font-size: 26px;
}
h4, .h4 {
font-size: 24px;
}
h5, .h5 {
font-size: 23px;
}
h6, .h6 {
font-size: 20px;
}
The above code will work if copied as it is and doesn’t conflict with any existing code.
Please note that the code provided serves only as a guide to help you get started custom coding on your own if there’s no option offered in our theme or the products we bundle.
We do not provide support for custom codes that means we can’t fix it in case it conflicts with something in your site nor will we enhance it.
Thanks