Fixed Income Summary December column being off by 1 because of the TH Padding on the total column

This commit is contained in:
johnny@pittpc.com 2020-09-25 16:28:59 -04:00
parent a2bd898eec
commit 1e21cb9768
1 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@ $sql_categories = mysqli_query($mysqli,"SELECT * FROM categories WHERE category_
</form>
<div class="table-responsive">
<table class="table table-striped">
<thead class="text-dark">
<thead>
<tr>
<th>Category</th>
<th class="text-right">January</th>
@ -91,7 +91,7 @@ $sql_categories = mysqli_query($mysqli,"SELECT * FROM categories WHERE category_
?>
<th class="text-right">$<?php echo number_format($total_payment_for_all_months,2); ?></th>
<td class="text-right text-bold">$<?php echo number_format($total_payment_for_all_months,2); ?></td>
</tr>
<?php
@ -122,7 +122,7 @@ $sql_categories = mysqli_query($mysqli,"SELECT * FROM categories WHERE category_
?>
<th class="text-right">$<?php echo number_format($payment_total_amount_for_month,2); ?></th>
<th class="text-right">$<?php echo number_format($payment_total_amount_for_month,2); ?></th>
<?php
}