HTML to PDF / DOCX / RTF Java converter library › Forums › PD4ML v3 Archived Forums (Read Only) › HTML/CSS rendering issues › Bigger bullet points for unordered list items › Re: Re: Bigger bullet points for unordered list items
July 8, 2018 at 08:53
#30109
You can either use images for your bullet points as per the example below:
myList li {<br />
background: url("bullet.gif") no-repeat left 5px;<br />
padding-left: 1em;<br />
}
Or apply font-size to the list-item:
ul.myList li {<br />
list-style-type: disc;<br />
font-size:8px;<br />
}