I am using Austpost which works great, unfortunately on the pages that show totals i.e invoice, checkout etc the line that shows the Austpost amount does not line up in the Totals column it appears to be left aligned.
I am using Austpost which works great, unfortunately on the pages that show totals i.e invoice, checkout etc the line that shows the Austpost amount does not line up in the Totals column it appears to be left aligned.
Hello Rod
I should have mentioned that I had not included the icons and was relying on a text only effect per alt=x.
As a test I replaced all calls to icons with define statements to give me a text value, which now works fine except on ADMIN/invoice.php,
The culprit code (in my case) appears to be on or about line 279......
for ($i = 0, $n = sizeof($order->totals); $i < $n; $i++) {
echo ' <tr>' . "\n" .
' <td align="right" class="'. str_replace('_', '-', $order->totals[$i]['class']) . '-Text">' . $order->totals[$i]['title'] . '</td>' . "\n" .
' <td align="right" class="'. str_replace('_', '-', $order->totals[$i]['class']) . '-Amount">' . $order->totals[$i]['text'] . '</td>' . "\n" .
' </tr>' . "\n";
where I think there is still a call to an icon(austpost_del). nonetheless I shall persevere with it and hopefully come up with a solution,
Regards
John