1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
<?php $array = array( 'base' => 'bsf-info-box', // shortcode base 'presets' => array( // presets array //1 array( 'title' => 'Icon at left with Heading', // Title of preset 'default' => false, // set true if if want to load this preset on newly created element 'settings' => array( 'icon_type' => 'selector', 'icon' => 'Defaults-cog gear', 'icon_img' => '', 'img_width' => '48', 'icon_size' => '25', 'icon_color' => '#333', 'icon_style' => 'none', 'icon_color_bg' => '#ffffff', 'icon_color_border' => '#333333', 'icon_border_style' => '', 'icon_border_size' => '1', 'icon_border_radius' => '500', 'icon_border_spacing' => '50', 'icon_animation' => '', 'title' => 'REAL TIME-SAVER', 'content' => 'Write a short description, that will describe the title or something informational and useful.', ) ), // end of preset //2 array( 'title' => 'Icon at right with Heading', // Title of preset 'default' => false, // set true if if want to load this preset on newly created element 'settings' => array( 'icon_type' => 'selector', 'icon' => 'Defaults-cog gear', 'icon_img' => '', 'img_width' => '48', 'icon_size' => '25', 'icon_color' => '#333', 'icon_style' => 'none', 'icon_color_bg' => '#ffffff', 'icon_color_border' => '#333333', 'icon_border_style' => '', 'icon_border_size' => '1', 'icon_border_radius' => '500', 'icon_border_spacing' => '50', 'icon_animation' => '', 'title' => 'REAL TIME-SAVER', 'pos' => 'heading-right', 'content' => 'Write a short description, that will describe the title or something informational and useful.', ) ), // end of preset //3 array( 'title' => 'Circle background icon with Heading', // Title of preset 'default' => false, // set true if if want to load this preset on newly created element 'settings' => array( 'icon_type' => 'selector', 'icon' => 'Defaults-home', 'icon_img' => '', 'img_width' => '48', 'icon_size' => '18', 'icon_color' => '#ffffff', 'icon_style' => 'advanced', 'icon_color_bg' => '#000000', 'icon_color_border' => '#ffffff', 'icon_border_style' => 'solid', 'icon_border_size' => '1', 'icon_border_radius' => '500', 'icon_border_spacing' => '36', 'icon_animation' => '', 'title' => 'Beautifully Simplistic', 'hover_effect' => 'style_2', 'content' => 'Write a short description or something else, that will describe the title or something informational and useful.', ) ), // end of preset //4 array( 'title' => 'Icon at left', // Title of preset 'default' => false, // set true if if want to load this preset on newly created element 'settings' => array( 'icon_type' => 'selector', 'icon' => 'Defaults-hand-o-right', 'icon_img' => '', 'img_width' => '48', 'icon_size' => '34', 'icon_color' => '#27ccc0', 'icon_style' => 'none', 'icon_color_bg' => '#ffffff', 'icon_color_border' => '#333333', 'icon_border_style' => '', 'icon_border_size' => '1', 'icon_border_radius' => '500', 'icon_border_spacing' => '50', 'icon_animation' => '', 'title' => 'Design To Brag About', 'pos' => 'left', 'content' => 'Write a short description, that will describe the title or something informational and useful.', ) ), // end of preset //5 array( 'title' => 'Icon at right', // Title of preset 'default' => false, // set true if if want to load this preset on newly created element 'settings' => array( 'icon_type' => 'selector', 'icon' => 'Defaults-hand-o-right', 'icon_img' => '', 'img_width' => '48', 'icon_size' => '34', 'icon_color' => '#27ccc0', 'icon_style' => 'none', 'icon_color_bg' => '#ffffff', 'icon_color_border' => '#333333', 'icon_border_style' => '', 'icon_border_size' => '1', 'icon_border_radius' => '500', 'icon_border_spacing' => '50', 'icon_animation' => '', 'title' => 'Design To Brag About', 'pos' => 'right', 'content' => 'Write a short description, that will describe the title or something informational and useful.', ) ), // end of preset //6 array( 'title' => 'Icon at Top', // Title of preset 'default' => false, // set true if if want to load this preset on newly created element 'settings' => array( 'icon_type' => 'selector', 'icon' => 'Defaults-volume-up', 'icon_img' => '', 'img_width' => '48', 'icon_size' => '32', 'icon_color' => '#f6653c', 'icon_style' => 'advanced', 'icon_color_bg' => '#f4f4f4', 'icon_color_border' => '#e2e2e2', 'icon_border_style' => 'solid', 'icon_border_size' => '1', 'icon_border_radius' => '500', 'icon_border_spacing' => '90', 'icon_animation' => '', 'title' => 'Award Winning Quality', 'hover_effect' => 'style_2', 'pos' => 'top', 'content' => 'Write a short description, that will describe the title or something informational and useful.', ) ), // end of preset ) );
|