I have a table with the last column filled with the task list check box and everytime I try to export to PDF the alignment becomes misaligned quite a bit. I've attached a screenshot.
I've tried updating the PDFLayout CSS, also looked around the forum and community but still didnt find anything that solved my problem.
I dont know much CSS so I am hoping some one can help provide me with the lines of CSS needed?
What I currently have;
@pagetTeng
{
/*The A4 paper size is 210 mm wide by 297 mm long*/
size: 210mm 297mm;
margin: 15mm;
}
table.fixedTableLayout {
table-layout: auto !important;
width: auto !important;
}
inline-task-list {
text-align: right;
margin-left: auto !important; ;
padding-left: auto !important; ;
}
Hello Solomon!
I have tried to replicate this issue locally without success. I am using Confluence 6.14.2. Having said this, can I ask you a few questions?
- Which version of Confluence are you running?
- Is this present in any table with tasks in it?
- Is your table fixed width or responsive?
- Does this happen without CSS customization?
- Where exactly did you apply the CSS? Can you send us a screenshot?
These details may help us understand how this result was achieved and then try to fix it!
Looking forward to your reply Solomon.
Hi Diego,
Thanks for getting back to me with this. Let me try to answer your questions;
Let me know if you need anything else.
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.
With Further Digging I found an answer to my issue. For those interested head to;
and use the following in your "Global PDF Stylesheet;
table
{
table-layout:auto !important;
width: auto !important;
}
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.