pdf-css-html5 remove indent from lists
Posted: Fri Mar 12, 2021 3:59 pm
Hi,
Can anyone help removing the indent from lists?
I have tried:
It aligns correctly in the merged.html but indents in the pdf.
Can anyone help removing the indent from lists?
Code: Select all
<ul class="linklist">
<li class="linklist"><a class="- topic/link link" format="html" href="https://livelink.agfa.net/Livelink/livelink.exe/overview/52557586" mapclass="- map/topicref " role="friend" scope="external" type="topic" target="_blank">PACS Migration Server Staging Guide (Livelink ID 52557586)</a></li>
<li class="linklist"><a class="- topic/link link" format="html" href="https://livelink.agfa.net/Livelink/livelink.exe/overview/49759820" mapclass="- map/topicref " role="friend" scope="external" type="topic" target="_blank">RIS/PACS Migration Server Platform Definition (Livelink ID 49759820)</a></li>
</ul>
Code: Select all
ul.linklist{
list-style-type: none;
padding: 0;
margin-left: 0 !important;
}
li.linklist{
list-style-type: none;
margin-bottom: 0 !important;
margin-left: 0 !important;
}