Forum


Replies: 1   Views: 706
Left margin/padding of ol and ul lists
Topic closed:
Please note this is an old forum thread. Information in this post may be out-to-date and/or erroneous.
Every phpdocx version includes new features and improvements. Previously unsupported features may have been added to newer releases, or past issues may have been corrected.
We encourage you to download the current phpdocx version and check the Documentation available.

Posted by NylonDerek  · 16-05-2022 - 19:13

Hello,

I'm using phpdocx 12.5 premium to embed HTML in word docs.

Is it possible to globally set the left margin/padding of OL and UL lists without applying a custom class to them? All attempts to do this using CSS have not worked.

Example code that does not affect left margin/padding:

<ul style="margin-left: 0; padding-left: 0;">
  <li>List Item 1</li>
  <li>List Item 2</li>
  <li>List Item 3</li>
</ul>

Thanks!