Hi,
i have partially a very deep space structure. When i export the space to pdf, the headings of the deepest pages are just normal text. Is there a way to handle this ?
Hi Benjamin,
I guess the problem lies in the CSS-PDF Stylesheet. It simply doesn't define so many levels of headings.
You can change this by adding more levels in the stylesheet as described here.
A simple example: A Level 6-Heading in CSS can be defined as following:
h6 {
display: block;
font-size: .67em;
margin-top: 2.33em;
margin-bottom: 2.33em;
margin-left: 0;
margin-right: 0;
font-weight: bold;
}
You can also "bulk-define" headings like this:
h2,
h3,
h4,
h5,
h6 {
display: block;
font-size: .67em;
margin-top: 2.33em;
margin-bottom: 2.33em;
margin-left: 0;
margin-right: 0;
font-weight: bold;
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.