Hello - I have 1 issues and 1 question
1) Issue - The Task Checkbox and the actual task are not lining up when exporting to pdf
2)Question - How can I change the font size of the task list items on export? Through the pdf stylesheet I already changed the font size using this
body,p,li,td,table,tr,.bodytext,.stepfield
{ font-size: 8pt !important; }
Which works for everything but any text that is attached to a task list checkbox
Thanks in advance for any assistance!
Hi Tim,
this is what Confluence renders and you can ad a font size:
ul.inline-task-list>li.checked {
background-image: url(data:image/png;base64,BASE64ENCODEDEIMAGEPLACEHOLDER);
}
ul.inline-task-list>li {
background-image: url(data:image/png;base64,BASE64ENCODEDEIMAGEPLACEHOLDER);
}
The default CSS rules for the PDF stylesheet: confluencedefaultpdf.css
Further informations can be found here: Customize Exports to PDF
Regards
-matthias
Thanks for your help Matthias.
That works if the task list isn't inside of a table. Any way to change it if it exists both inside and outside of a table?
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.