PluginProbe
GetResponse Forms by Optin Cat / 1.7.0
GetResponse Forms by Optin Cat v1.7.0
1.3.4 1.3.5 1.3.6 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 1.5.2 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.6.1 1.6.2 1.6.3 1.7.0 1.7.1 1.7.2 1.8.0 1.8.1 2.0.0 All 36 releases
getresponse / layouts / widget / layout_1 / layout.php

layout.php in GetResponse Forms by Optin Cat 1.7.0, at layouts/widget/layout_1/layout.php

72 lines 2.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * @package Optin Cat
5 */
6
7 $layout = array(
8
9 'name' => __( 'Layout 1' ),
10
11 'editables' => array(
12
13 // Added to the fieldset "Form Background"
14 'form' => array(
15 '.fca_eoi_layout_1' => array(
16 'background-color' => array( __( 'Form Background Color' ), '' ),
17 'border-color' => array( __( 'Border Color' ), '#D2D2D2' ),
18 ),
19 ),
20 // Added to the fieldset "Headline"
21 'headline' => array(
22 '.fca_eoi_layout_1 .fca_eoi_layout_1_headline_copy_wrapper' => array(
23 'font-size' => array( __('Font Size'), '25px'),
24 'color' => array( __('Font Color'), '#2B6B98'),
25 ),
26 ),
27 'description' => array(
28 '.fca_eoi_layout_1 .fca_eoi_layout_1_description_copy_wrapper p' => array(
29 'font-size' => array( __('Font Size'), '14px'),
30 'color' => array( __('Font Color'), '#6D6D6D'),
31 ),
32 ),
33 'name_field' => array(
34 '.fca_eoi_layout_1 .fca_eoi_layout_1_name_field_wrapper, .fca_eoi_layout_1 .fca_eoi_layout_1_name_field_wrapper input' => array(
35 'color' => array( __( 'Font Color' ), '#7f7f7f' ),
36 'background-color' => array( __( 'Background Color' ), '#F5F5F5' ),
37 ),
38 '.fca_eoi_layout_1 .fca_eoi_layout_1_name_field_wrapper' => array(
39 'border-color' => array( __('Border Color'), '#CCC'),
40 ),
41 ),
42 'email_field' => array(
43 '.fca_eoi_layout_1 .fca_eoi_layout_1_email_field_wrapper, .fca_eoi_layout_1 .fca_eoi_layout_1_email_field_wrapper input' => array(
44 'color' => array( __( 'Font Color' ), '#7f7f7f' ),
45 'background-color' => array( __( 'Background Color' ), '#F5F5F5'),
46 ),
47 '.fca_eoi_layout_1 .fca_eoi_layout_1_email_field_wrapper' => array(
48 'border-color' => array( __( 'Border Color' ), '#CCC'),
49 ),
50 ),
51 'button' => array(
52 '.fca_eoi_layout_1 .fca_eoi_layout_1_submit_button_wrapper input' => array(
53 'font-size' => array( __('Font Size'), '14px'),
54 'color' => array( __( 'Font Color' ), '#963' ),
55 'background-color' => array( __( 'Button Color' ), '#f5d03b' ),
56 'border-color' => array( __( 'Border Color' ), '#EEC22B' ),
57 ),
58 ),
59 'privacy' => array(
60 '.fca_eoi_layout_1 .fca_eoi_layout_1_privacy_copy_wrapper' => array(
61 'font-size' => array( __('Font Size'), '14px'),
62 'color' => array( __('Font Color'), '#8F8F8F'),
63 ),
64 ),
65 'fatcatapps' => array(
66 '.fca_eoi_layout_1 .fca_eoi_layout_1_fatcatapps_link_wrapper a, .fca_eoi_layout_1 .fca_eoi_layout_1_fatcatapps_link_wrapper a:hover' => array(
67 'color' => array( __('Font Color'), '#BAA34E'),
68 ),
69 ),
70 )
71 );
72