I am trying to move this text that I added to my P...
# advancedpdf
b
I am trying to move this text that I added to my PDF next to the ship to table.
Here is my span: } span.paidinfull { font-size: 40pt; color: red; }
This is the table and statement: <table style="width: 100%; margin-top: 10px;"><tr> <td class="addressheader">${salesorder.shipaddress@label}</td> </tr> <tr> <td class="address">${salesorder.shipaddress}</td> </tr></table> <#if record.shipmethod == "TSL COD"><span class="paidinfull">C.O.D.</span></#if>
e
The C.O.D. section needs to be a <td> inside the same table as the Ship To section
<table><tr><td>ship_to_section</td><td>cod_section</td></tr></table>
😄 1
b
That worked perfectly. Thanks for your help Eric!