CSS
Show More
.qr-code {
width: 90;
height: 90;
HTML
Show More
<table>
<tr>
<td colspan="2">
Invoice Information
</td>
</tr>
<tr>
<td>
Invoice Date:
</td>
<td>
<<[INVOICE_DATE]>>
</td>
</tr>
<tr>
<td>
Invoice ID:
</td>
<td>
<<[INVOICE_ID]>>
</td>
</tr>
<tr>
<td colspan="2">
<<[QR]>>
</td>
</tr>
</table>
RESULT QR SIZE DID’T CHANGED
Changed CSS and added image functionality
Show More
.qr-code img {
width: 90;
height: 90;
RESULT - NOT READABLE QR
Changed HTML-wrapped QR image column in image class,
<td style="border:0; vertical-align:top">
<table style="float:right;margin:0 0">
<tr>
<td colspan="2" class="center bold">Invoice Information</td>
</tr>
<tr>
<td>Invoice Date:</td>
<td><<[INVOICE_DATE]>></td>
</tr>
<tr>
<td>Invoice ID:</td>
<td><<[INVOICE_ID]>></td>
</tr>
<tr>
<strong> <td colspan="2" class="center qr-code">
<img src="<<[QR]>>" style="width:90px; height:90px"></strong>
</td>
</tr>
</table>
AppSheet is not accepting image column wrapped in a image class
I am using an HTML template and the size of the QR code is too big. I have tried using CSS to resize it, but the QR code is not readable. How can I change the size of the QR code in the HTML format without losing the original quality and making it readable? Is it possible to resize the image of the QR code without affecting its readability? All I want is a tiny QR that works.
I would really appreciate any help.





