PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.14
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.14
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.14, at classes/views/styles/_form-title.php

61 lines 1.7 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"><label class="frm-style-item-heading"><?php esc_html_e( 'Color', 'formidable' ); ?></label></div>
7 <div class="frm7 frm_form_field">
8 <?php
9 new FrmColorpickerStyleComponent(
10 $frm_style->get_field_name( 'title_color' ),
11 $style->post_content['title_color'],
12 array(
13 'id' => 'frm_fieldset_color',
14 'action_slug' => 'title_color',
15 )
16 );
17 ?>
18 </div>
19
20 <div class="frm5 frm_form_field"><label class="frm-style-item-heading"><?php esc_html_e( 'Font Size', 'formidable' ); ?></label></div>
21 <div class="frm7 frm_form_field">
22 <?php
23 new FrmSliderStyleComponent(
24 $frm_style->get_field_name( 'title_size' ),
25 $style->post_content['title_size'],
26 array(
27 'id' => 'frm_title_size',
28 'max_value' => 100,
29 )
30 );
31 ?>
32 </div>
33
34 <div class="frm5 frm_form_field"><label class="frm-style-item-heading"><?php esc_html_e( 'Margin', 'formidable' ); ?></label></div>
35 <div class="frm7 frm_form_field">
36 <?php
37 new FrmSliderStyleComponent(
38 null,
39 $style->post_content['title_margin_top'],
40 array(
41 'id' => 'frm_title_margins',
42 'type' => 'vertical-margin',
43 'max_value' => 100,
44 'independent_fields' => array(
45 array(
46 'name' => $frm_style->get_field_name( 'title_margin_top' ),
47 'value' => $style->post_content['title_margin_top'],
48 'id' => 'frm_title_margin_top',
49 'type' => 'top',
50 ),
51 array(
52 'name' => $frm_style->get_field_name( 'title_margin_bottom' ),
53 'value' => $style->post_content['title_margin_bottom'],
54 'id' => 'frm_title_margin_bottom',
55 'type' => 'bottom',
56 ),
57 ),
58 )
59 );
60 ?>
61 </div>