Shelby Owens
11/26/2024, 4:07 PMCeligo AI
11/26/2024, 4:07 PMAI generated answer (using internal Slack threads):****** Disclaimer: This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes. ****** The issue you're experiencing with the text alignment in the
<td>
cell of an advanced PDF in NetSuite is due to the native justification built into the templates.
To fix this, you can use the align
attribute in the <td>
tag to specify the alignment of the text. However, if this doesn't work, you might be facing a known anomaly with table cell alignment in NetSuite's advanced PDF templates.
Here is a link to a blog post that provides a workaround for this issue: [Fix Table Cell Alignment Justification Anomaly](https://blog.prolecto.com/2016/03/18/netsuite-advanced-pdf-templates-how-to-fix-table-cell-alignment-justification-anomaly/)
In this post, it's suggested to use a <div>
tag inside the <td>
tag and apply the text-align: left
style to the <div>
tag. Here's an example:
html
<td>
<div style="text-align: left;">
Your text here
</div>
</td>
This should help you align the text to the left inside the <td>
cell.Celigo AI
11/26/2024, 4:08 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.828375518
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.825418413
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.824928701
Celigo AI
11/26/2024, 4:08 PM