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