How do I reduce the size of this red bar? I want t...
# suitescript
s
How do I reduce the size of this red bar? I want to leave this information on the left, but it stays that way. I left this red bar to understand what was happening on the form This is the code:
Copy code
<table style="page-break-inside: avoid; width: 100%; margin-top: 10px;">
   
  
  <tr>
	<td colspan="4">&nbsp;</td>
	<td align="right" style="font-weight: bold; color: #333333;">${record.subtotal@label}</td>
	<td align="right">${record.subtotal}</td>
	</tr>
	<tr>
	<td colspan="4">&nbsp;</td>
	<td align="right" style="font-weight: bold; color: #333333;">Pis e Cofins</td>
	<td align="right">INCLUSOS</td>
	</tr>

	<tr>
	<td colspan="4">&nbsp;</td>
	<td align="right" style="font-weight: bold; color: #333333;">${record.taxtotal@label} (${record.taxrate}%)</td>
	<td align="right">${record.taxtotal}</td>
	</tr>
    
  <tr style="background-color: red; line-width: 200%;">
    <td colspan="2" align="left" style="background-color: #e3e3e3">PESO LIQUÍDO(Kg):&nbsp;<span style="font-size:12px"><strong>${record.custbody_enl_netweight}</strong></span><br /><br/>PESO BRUTO(Kg):&nbsp;<span style="font-size:12px;"><strong>${record.custbody_enl_grossweight}</strong></span></td>
  </tr>
	<tr style="background-color: #e3e3e3; line-height: 200%;">
	<td background-color="#ffffff" colspan="4">&nbsp;</td>
	<td align="right" style="font-weight: bold; color: #333333;">${record.total@label}</td>
	<td align="right">${record.total}</td>
	</tr>

  </table>