PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.28
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.28
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / classes / views / styles / _form-title.php

_form-title.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.28, at classes/views/styles/_form-title.php

73 lines 1.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 die( 'You are not allowed to call this page directly.' );
4 }
5 ?>
6 <div class="frm5 frm_form_field">
7 <label
8 for="frm_fieldset_color"
9 class="frm-style-item-heading"><?php esc_html_e( 'Color', 'formidable' ); ?></label>
10 </div>
11 <div class="frm7 frm_form_field">
12 <?php
13 new FrmColorpickerStyleComponent(
14 $frm_style->get_field_name( 'title_color' ),
15 $style->post_content['title_color'],
16 array(
17 'id' => 'frm_fieldset_color',
18 'action_slug' => 'title_color',
19 )
20 );
21 ?>
22 </div>
23
24 <div class="frm5 frm_form_field">
25 <label
26 for="frm_title_size"
27 class="frm-style-item-heading"><?php esc_html_e( 'Font Size', 'formidable' ); ?></label>
28 </div>
29 <div class="frm7 frm_form_field">
30 <?php
31 new FrmSliderStyleComponent(
32 $frm_style->get_field_name( 'title_size' ),
33 $style->post_content['title_size'],
34 array(
35 'id' => 'frm_title_size',
36 'max_value' => 100,
37 )
38 );
39 ?>
40 </div>
41
42 <div class="frm5 frm_form_field">
43 <label
44 for="frm_title_margins"
45 class="frm-style-item-heading"><?php esc_html_e( 'Margin', 'formidable' ); ?></label>
46 </div>
47 <div class="frm7 frm_form_field">
48 <?php
49 new FrmSliderStyleComponent(
50 null,
51 $style->post_content['title_margin_top'],
52 array(
53 'id' => 'frm_title_margins',
54 'type' => 'vertical-margin',
55 'max_value' => 100,
56 'independent_fields' => array(
57 array(
58 'name' => $frm_style->get_field_name( 'title_margin_top' ),
59 'value' => $style->post_content['title_margin_top'],
60 'id' => 'frm_title_margin_top',
61 'type' => 'top',
62 ),
63 array(
64 'name' => $frm_style->get_field_name( 'title_margin_bottom' ),
65 'value' => $style->post_content['title_margin_bottom'],
66 'id' => 'frm_title_margin_bottom',
67 'type' => 'bottom',
68 ),
69 ),
70 )
71 );
72 ?>
73 </div>