| 1 |
<div class="field-group clearfix frm-half frm-first-row"> |
| 2 |
<label><?php esc_html_e( 'Size', 'formidable' ) ?></label> |
| 3 |
<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'title_size' ) ) ?>" id="frm_title_size" value="<?php echo esc_attr( $style->post_content['title_size'] ) ?>" /> |
| 4 |
</div> |
| 5 |
|
| 6 |
<div class="field-group clearfix frm-half frm-first-row"> |
| 7 |
<label><?php esc_html_e( 'Color', 'formidable' ) ?></label> |
| 8 |
<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'title_color' ) ) ?>" id="frm_title_color" class="hex" value="<?php echo esc_attr( $style->post_content['title_color'] ) ?>" /> |
| 9 |
</div> |
| 10 |
<div class="field-group clearfix frm-half"> |
| 11 |
<label><?php esc_html_e( 'Margin Top', 'formidable' ) ?></label> |
| 12 |
<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'title_margin_top' ) ) ?>" id="frm_title_margin_top" value="<?php echo esc_attr( $style->post_content['title_margin_top'] ) ?>" size="4" /> |
| 13 |
</div> |
| 14 |
<div class="field-group clearfix frm-half"> |
| 15 |
<label><?php esc_html_e( 'Margin Bottom', 'formidable' ) ?></label> |
| 16 |
<input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'title_margin_bottom' ) ) ?>" id="frm_title_margin_bottom" value="<?php echo esc_attr( $style->post_content['title_margin_bottom'] ) ?>" size="4" /> |
| 17 |
</div> |
| 18 |
|