Skip to content

Commit

Permalink
fixed logo size and rupee sumbol repetation
Browse files Browse the repository at this point in the history
  • Loading branch information
hitswa committed May 5, 2018
1 parent 604928b commit 048d2a8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions invoice.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ function dateFormatter($date) {
}
img {
height:auto;
/*height: 150px;*/
width:300px;
height: 150px;
/*width:300px;*/
float: right;
}
.fullWidth {
Expand Down Expand Up @@ -273,7 +273,7 @@ function dateFormatter($date) {
<table>
<tr class="fullWidth">
<td class="grayscale fullWidth tenPadding alignTop">
<b>Balance Due (INR) <span class="pull-right totalAmount">&#8377; <?php echo numberToCurrency($finalAmount); ?></span></b>
<b>Balance Due (INR) <span class="pull-right totalAmount"> <?php echo numberToCurrency($finalAmount); ?></span></b>
</td>
</tr>
</table>
Expand Down Expand Up @@ -343,7 +343,7 @@ function dateFormatter($date) {
</tr>
<tr class="grayscale tenPadding">
<td class="tenPadding"><b>Balance due (INR)</b></td>
<td class="tableRightValue totalAmount"><b>&#8377; <?php echo numberToCurrency($finalAmount); ?></b></td>
<td class="tableRightValue totalAmount"><b> <?php echo numberToCurrency($finalAmount); ?></b></td>
</tr>
</table>

Expand Down Expand Up @@ -407,11 +407,11 @@ function dateFormatter($date) {
</tr>
<tr class="borderBottom">
<td><b>Balance Due (INR)</b></td>
<td class="align-right totalAmount">&#8377; <?php echo numberToCurrency($finalAmount); ?></td>
<td class="align-right totalAmount"> <?php echo numberToCurrency($finalAmount); ?></td>
</tr>
<tr class="borderBottom">
<td><b>Amount Enclosed</b></td>
<td class="align-right totalAmount">&#8377; <?php echo numberToCurrency($finalAmount); ?></td>
<td class="align-right totalAmount"> <?php echo numberToCurrency($finalAmount); ?></td>
</tr>
</table>
</td>
Expand Down

0 comments on commit 048d2a8

Please sign in to comment.