Hi Ralf,
In your case, the H1 and other tags are the part of the content and the h1,h2 and other heading tags are implemented with predefined style. Regretfully, there is no such options to control the font size and style seprately within the headline element content as you are expecting.
But you can override the predefined styles by adding these 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