Reduce whitespace between items in bullet lists and ordered lists
Hi,
How can I do that? In the Content Formatting section I thought I had to do this on the ".wikicontent ul" formatting section. I changed the 'line-height' and 'margin-bottom' values but that does not change anything on the exported PDF.
.wikicontent ul {
font-family: "Franklin_Gothic_Book";
font-weight: normal;
font-size: 11pt;
line-height: 8pt;
color: black;
margin-top: 0pt;
margin-bottom: 3pt;
padding-left: 9,2mm;
}
So I also changed the color value to 'red', result is that only the bullets are red. Am I in the wrong section to change the whitespace between list items?
Thanks,
Patrick
-
Hi Patrick,
I think you are right with your suggestion.
You can have a look at the xhtml file created by the Exporter as base for the final PDF creation. You find this in the directory <Confluence data>\temp\scrll_PdfExporter<id> where <id> identifies the individual export. My example shows the following code:
<p>Normal text</p>
<ul class="">
<li class="">
<p>First bullet item</p>
</li>
<li class="">
<p>Second bullet item</p>
</li>
</ul>
<p>Normal text</p>If you want to reduce the whitespace between list items lower than the value configured for the normal <p> tag you may try the following:
.wikicontent ul p {...}Matthias
Please sign in to leave a comment.
Comments
4 comments