| 1 |
<style> |
| 2 |
h1{color:red;} |
| 3 |
</style> |
| 4 |
<table |
| 5 |
width="<?php esc_attr_e( $general_attrs['tableWidth'], 'woocommerce' ); ?>" |
| 6 |
cellspacing="0" |
| 7 |
cellpadding="0" |
| 8 |
border="0" |
| 9 |
align="center" |
| 10 |
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%' ); ?>" |
| 11 |
class="web-main-row" |
| 12 |
id="web<?php echo esc_attr( $id ); ?>" |
| 13 |
> |
| 14 |
<tbody> |
| 15 |
<tr> |
| 16 |
<td |
| 17 |
id="web-<?php echo esc_attr( $id ); ?>-order-item" |
| 18 |
class="web-order-item" |
| 19 |
align="left" |
| 20 |
style='font-size: 13px; line-height: 22px; word-break: break-word; |
| 21 |
<?php echo 'font-family: ' . wp_kses_post( $attrs['family'] ); ?>; |
| 22 |
<?php echo esc_attr( 'padding: ' . $attrs['paddingTop'] . 'px ' . $attrs['paddingRight'] . 'px ' . $attrs['paddingBottom'] . 'px ' . $attrs['paddingLeft'] . 'px;' ); ?> |
| 23 |
' |
| 24 |
> |
| 25 |
<div |
| 26 |
style="min-height: 10px; <?php echo esc_attr( 'color: ' . $attrs['textColor'] ); ?>;" |
| 27 |
> |
| 28 |
<div class="yaymail_items_border_custom" style="<?php echo esc_attr( 'color: ' . $attrs['titleColor'] ); ?>"> |
| 29 |
<?php echo wp_kses_post( $attrs['contentBefore'] ); ?> |
| 30 |
</div> |
| 31 |
<h2 |
| 32 |
class="yaymail_builder_order" |
| 33 |
style="font-size: 18px; font-weight: 700; <?php echo esc_attr( 'color: ' . $attrs['titleColor'] ); ?>" |
| 34 |
> |
| 35 |
<div class="yaymail_builder_order_title" style='<?php echo 'font-family: ' . wp_kses_post( $attrs['family'] ); ?>;'> |
| 36 |
<?php echo wp_kses_post( $attrs['contentTitle'] ); ?> |
| 37 |
</div> |
| 38 |
</h2> |
| 39 |
<div> |
| 40 |
<table |
| 41 |
class="yaymail_builder_table_items_content" |
| 42 |
cellspacing="0" |
| 43 |
cellpadding="6" |
| 44 |
border="1" |
| 45 |
width="100%" |
| 46 |
style='border-collapse: separate; |
| 47 |
<?php echo esc_attr( 'color: ' . $attrs['textColor'] ); ?>; |
| 48 |
<?php echo esc_attr( 'border: 1px solid ' . $attrs['borderColor'] ); ?>; |
| 49 |
<?php echo 'font-family: ' . wp_kses_post( $attrs['family'] ); ?>; |
| 50 |
' |
| 51 |
> |
| 52 |
<?php echo wp_kses_post( $attrs['content'] ); ?> |
| 53 |
</table> |
| 54 |
</div> |
| 55 |
|
| 56 |
<div> |
| 57 |
<?php echo wp_kses_post( $attrs['contentAfter'] ); ?> |
| 58 |
</div> |
| 59 |
</div> |
| 60 |
</td> |
| 61 |
</tr> |
| 62 |
</tbody> |
| 63 |
</table> |
| 64 |
|