I figured out how to adjust totals to right side under the item totals.
you need to adjust the file found here:/bamboo_system_files/application/views/invoices
Look for the following code
(p)- I had to use paragraph since proper < > will not show.
<?php echo $total_no_tax;?>
<?php echo $tax_info;?>
<?php echo $total_with_tax;?>
<?php echo $total_paid;?>
<?php echo $total_outstanding;?>
</p>
add align=“right” inside (p)
So, the finished result will look like the code below.
(p align=“right”)
<?php echo $total_no_tax;?>
<?php echo $tax_info;?>
<?php echo $total_with_tax;?>
<?php echo $total_paid;?>
<?php echo $total_outstanding;?>
</p>
Now I just want to adjust it so the numbers line up. Anyone know how I can achieve this?