I'm using this CSS code, but after exporting to a PDF file, numbering starts appearing on the page title.
Here is the code that i used:
body { counter-reset: heading1_counter; }
h1 { counter-reset: heading2_counter; }
h2 { counter-reset: heading3_counter; }
h3 { counter-reset: heading4_counter; }
h1:before {
counter-increment: heading1_counter;
content: counter(heading1_counter) ". ";
}
h2:before {
counter-increment: heading2_counter;
content: counter(heading1_counter) "." counter(heading2_counter) ". ";
}
h3:before {
counter-increment: heading3_counter;
content: counter(heading1_counter) "." counter(heading2_counter) "." counter(heading3_counter) ". ";
}
How to exclude the numbering header from appearing on the page title in PDF export Confluence and start the numbering header after the page title?
Community moderators have prevented the ability to post new answers.
Hi @Aina Afrina
It is possible to skip heading 1 for users of apps like Mosaic or the Numbered headings for Confluence.
Hi @Aina Afrina
Can you mention which plugin of Numbered Headings you are using ?
Lots of partners' apps provide a solution for that.
Regards,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I dont use any plugin Numbered Headings. I have been following from this Additional PDF export settings | Confluence Cloud | Atlassian Support
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.