| 1 |
<table |
| 2 |
width="<?php esc_attr_e( $general_attrs['tableWidth'], 'woocommerce' ); ?>" |
| 3 |
cellspacing="0" |
| 4 |
cellpadding="0" |
| 5 |
border="0" |
| 6 |
align="center" |
| 7 |
style="display: table; <?php echo esc_attr( 'background-color: ' . $attrs['backgroundColor'] ); ?>; <?php echo ! $isInColumns ? esc_attr( 'min-width:' . $general_attrs['tableWidth'] . 'px' ) : esc_attr( 'width: 100%' ); ?>" |
| 8 |
class="web-main-row" |
| 9 |
id="web<?php echo esc_attr( $id ); ?>" |
| 10 |
> |
| 11 |
<tbody> |
| 12 |
<tr> |
| 13 |
<td |
| 14 |
id="web<?php echo esc_attr( $id ); ?>-space" |
| 15 |
class="web-space" |
| 16 |
style="font-size: 0px; line-height: 0px;<?php echo esc_attr( 'height: ' . $attrs['height'] . 'px;' ); ?> "> |
| 17 |
</td> |
| 18 |
</tr> |
| 19 |
</tbody> |
| 20 |
</table> |
| 21 |
|