Ask questions on how to capture or convert web pages or HTML into images, CSV, PDF or DOCX documents as well on how to convert videos into animated GIF's using our API.
Converting html string to docx:
<div style="text-align:center;"><img class="imgTopLogo" src="https://www.xyz.com//media/education-icon.png" /></div> (centers fine)
<table style="width:100%;"><tr><td>
<p style="text-align:center;">${modifiedCourseData.certificateHeadline}</p> (centers fine)
<p style="text-align:center;"><img class="imgTopLogo" src="https://www.xyz.com//media/education-icon.png" /></p> (does not center)
<p style="text-align:center;">${modifiedCourseData.certificateHeadline}</p> (centers fine)
...
How can I center an image in a TD? Thanks!