1

Hello everyone,

I have used html2pdf for some projects already, it really is a great tool! In my current project, I have some difficulties in formating <li>-Bullets.

The customer would like to have his own <li>-graphics in an unordered list (<ul>). We've tried to style the bullet graphics using list-style-image:url(path/to/image.gif), but that doesn't work.

Now, here are my questions:

1. Is there a way to style the <li>-bullets individually somehow?
2. Does a documentation exist where all the possible css-styles can be looked up?

Thank's a lot for all your help!
Regards,
Kerstin

2

you have to put the CSS on the UL : <ul style="list-style-image: url(./res/puce.gif)"> (see example 12)
Ancien pseudo : lolo

3

Great, That's it! Thank you very much!