claybourg Posted November 12, 2013 Share Posted November 12, 2013 (edited) The logos of the invoice and delivery PDF bleed over the shipping address. I've tried uploading a smaller logo but it will still bleed over the shipping address with a poor resolution. With the large logo the resolution is fine but the positioning is the same. This is standard before I touch any code and I'm not finding which CSS to edit to fix this. Edited November 12, 2013 by claybourg (see edit history) Link to comment Share on other sites More sharing options...
claybourg Posted November 12, 2013 Author Share Posted November 12, 2013 I've figured it out. In /PDF/header.tpl Reduce the logo size line 27 from 50% originally <tr> <td style="width: 40%"> {if $logo_path} In /PDF/invoice.tpl and delivery-slip.tpl add a few table rows at the top from this: <div style="font-size: 9pt; color: #444"> <table> <tr><td> </td></tr> </table> <!-- ADDRESSES --> to this" <div style="font-size: 9pt; color: #444"> <table> <tr><td> </td></tr> <tr><td> </td></tr> <tr><td> </td></tr> <tr><td> </td></tr> </table> <!-- ADDRESSES --> Link to comment Share on other sites More sharing options...
Recommended Posts