Contact Form 7 Skins - Version 1.1.1

Version Description

  • 2015-09-21 =

  • FEATURE: Add support for Ready styles

  • FEATURE: Show active licenses in Licenses tab

  • FIX: Enqueue styles for non-content shortcodes

  • TWEAK: Add tabs & consistent spacing to templates

  • TWEAK: Improve readability of Logs tab

Download this release

Release Info

Developer buzztone
Plugin Icon 128x128 Contact Form 7 Skins
Version 1.1.1
Comparing to
See all releases

Code changes from version 1.1 to 1.1.1

includes/contact.php CHANGED
@@ -20,31 +20,13 @@ class CF7_Skins_Contact {
20
  * @since 0.0.1
21
  */
22
  function __construct() {
23
- add_filter( 'wpcf7_form_class_attr', array( &$this, 'form_class_attr' ) );
24
-
25
- add_action( 'wp_enqueue_scripts', array( &$this, 'enqueue_scripts' ) );
26
- add_action( 'wpcf7_contact_form', array( &$this, 'contact_form' ) );
27
  add_action( 'wp_head', array( $this, 'print_custom' ) );
 
28
  }
29
 
30
 
31
- /**
32
- * Get the contact form 7 ids in the current post content
33
- *
34
- * @return array of contact form 7 id(s)
35
- * @since 0.1.0
36
- */
37
- function get_ids() {
38
- global $post;
39
-
40
- // Return if current page has no id
41
- if( ! isset( $post->ID ) )
42
- return false;
43
-
44
- return $this->parse_shortcode_id( $post->post_content );
45
- }
46
-
47
-
48
  /**
49
  * Parse the CF7 shortcode ID in single or nested shortcodes
50
  * @return (array) of CF7 id(s)
@@ -118,40 +100,41 @@ class CF7_Skins_Contact {
118
 
119
 
120
  /**
121
- * Enqueue cf7s-framework + selected skin style .css file to the frontend header.
122
- *
123
- * Hooked to 'wpcf7_enqueue_styles'
124
- *
125
- * @var $style - cf7skins style applied to current CF7 form
126
- * @action 'cf7skins_enqueue_styles'
127
- * @since 0.0.1
128
  */
129
- function enqueue_scripts() {
 
 
 
130
 
131
- if( $ids = $this->get_ids() ) { // if current post content has CF7 form
 
 
132
 
133
- $skins = CF7_Skin_Style::cf7s_get_style_list(); // get all skins
134
-
135
- foreach( $ids as $post_id ) {
136
- if( $style = get_post_meta( $post_id, 'cf7s_style', true ) ) {
137
- // $style - cf7skins style applied to current CF7 form
138
-
139
- wp_enqueue_style( "cf7s-framework-normalize",
140
- CF7SKINS_URL . 'css/framework/cf7s-normalize.css',
141
- array('contact-form-7'), CF7SKINS_VERSION, 'all' );
142
-
143
- wp_enqueue_style( "cf7s-framework-default",
144
- CF7SKINS_URL . 'css/framework/cf7s-default.css',
145
- array('contact-form-7'), CF7SKINS_VERSION, 'all' );
146
-
147
- if ( isset( $skins[$style] ) ) // check if skin is exists
148
- wp_enqueue_style( "cf7s-$style", $skins[$style]['url'] . trailingslashit( $skins[$style]['dir'] ) . $skins[$style]['index'],
149
- array('contact-form-7'), CF7SKINS_VERSION, 'all' );
150
- }
151
- }
152
-
153
- do_action( 'cf7skins_enqueue_scripts', $ids );
154
- }
155
  }
156
 
157
 
@@ -208,6 +191,11 @@ class CF7_Skins_Contact {
208
  if ( ! get_post_meta( $cf7->id(), 'cf7s_template', true ) && ! get_post_meta( $cf7->id(), 'cf7s_style', true ) )
209
  return $cf7;
210
 
 
 
 
 
 
211
  $form = $this->get_form_content( $cf7 );
212
 
213
  if ( version_compare( WPCF7_VERSION, '3.9-alpha', '>' ) ) {
@@ -282,6 +270,21 @@ class CF7_Skins_Contact {
282
  }
283
 
284
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
285
  /**
286
  * Print custom scripts/styles from the settings page
287
  *
20
  * @since 0.0.1
21
  */
22
  function __construct() {
23
+ add_filter( 'wpcf7_form_class_attr', array( &$this, 'form_class_attr' ) );
24
+ add_action( 'wpcf7_contact_form', array( &$this, 'contact_form' ), 1 );
 
 
25
  add_action( 'wp_head', array( $this, 'print_custom' ) );
26
+ add_action( 'cf7skins_enqueue_styles', array( $this, 'skins_style' ), 9, 1 ); // Priority set to 9
27
  }
28
 
29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  /**
31
  * Parse the CF7 shortcode ID in single or nested shortcodes
32
  * @return (array) of CF7 id(s)
100
 
101
 
102
  /**
103
+ * Enqueue cf7s-framework + selected skin style .css file to the frontend.
104
+ *
105
+ * @var $style - The CF7 Skins style slug name applied to current CF7 form
106
+ * @since 1.1
 
 
 
107
  */
108
+ function enqueue_style( $style ) {
109
+ wp_enqueue_style( "cf7s-framework-normalize",
110
+ CF7SKINS_URL . 'css/framework/cf7s-normalize.css',
111
+ array('contact-form-7'), CF7SKINS_VERSION, 'all' );
112
 
113
+ wp_enqueue_style( "cf7s-framework-default",
114
+ CF7SKINS_URL . 'css/framework/cf7s-default.css',
115
+ array('contact-form-7'), CF7SKINS_VERSION, 'all' );
116
 
117
+ /**
118
+ * Filter hook action enqueue styles after CF7 Skins Framework
119
+ * or before selected skin style
120
+ * @since 1.1.1
121
+ */
122
+ do_action( 'cf7skins_enqueue_styles', $style );
123
+ }
124
+
125
+
126
+ /**
127
+ * Enqueue cf7s-framework + selected skin style .css file to the frontend.
128
+ *
129
+ * @var $style - cf7skins style slug name applied to current CF7 form
130
+ * @since 1.1
131
+ */
132
+ function skins_style( $style ) {
133
+ $skins = CF7_Skin_Style::cf7s_get_style_list(); // get all skins
134
+
135
+ if ( isset( $skins[$style] ) ) // check if skin is exists
136
+ wp_enqueue_style( "cf7s-$style", $skins[$style]['url'] . trailingslashit( $skins[$style]['dir'] ) . $skins[$style]['index'],
137
+ array('contact-form-7'), CF7SKINS_VERSION, 'all' );
 
138
  }
139
 
140
 
191
  if ( ! get_post_meta( $cf7->id(), 'cf7s_template', true ) && ! get_post_meta( $cf7->id(), 'cf7s_style', true ) )
192
  return $cf7;
193
 
194
+ // Enqueue CF7 Skins styles
195
+ // @since 1.1
196
+ if( $style = get_post_meta( $cf7->id(), 'cf7s_style', true ) )
197
+ $this->enqueue_style( $style );
198
+
199
  $form = $this->get_form_content( $cf7 );
200
 
201
  if ( version_compare( WPCF7_VERSION, '3.9-alpha', '>' ) ) {
270
  }
271
 
272
 
273
+ /**
274
+ * Print selected enqueue styles from the settings page
275
+ *
276
+ * @parameter none
277
+ * @since 1.1
278
+ * @author Neil Murray
279
+ */
280
+ function custom_enqueue_style() {
281
+ $option = get_option( CF7SKINS_OPTIONS );
282
+ if( isset( $option['enqueue_styles'] ) && is_array( $option['enqueue_styles'] ) )
283
+ foreach( $option['enqueue_styles'] as $k => $val )
284
+ $this->enqueue_style($k);
285
+ }
286
+
287
+
288
  /**
289
  * Print custom scripts/styles from the settings page
290
  *
includes/license.php ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * License Class
4
+ *
5
+ * Implements EDD Licensing & Updates
6
+ *
7
+ * @package cf7skins
8
+ * @author Neil Murray
9
+ * @version 0.0.1
10
+ * @since 0.2.0
11
+ */
12
+
13
+ class CF7_Skins_License {
14
+
15
+
16
+ /**
17
+ * Class constructor
18
+ * @uses http://codex.wordpress.org/Function_Reference/add_action
19
+ * @since 0.2.0
20
+ */
21
+ function __construct() {
22
+
23
+ add_filter( 'cf7skins_setting_tabs', array( &$this, 'license_tab' ), 1, 1 );
24
+ add_action( 'cf7skins_section_license', array( &$this, 'active_sites' ) );
25
+ }
26
+
27
+
28
+ /**
29
+ * Enable license tab if other plugins need activation
30
+ *
31
+ * @param $tabs
32
+ * @since 0.5.0
33
+ */
34
+ function license_tab( $tabs ) {
35
+ $tabs['license'] = __( 'Licenses', CF7SKINS_TEXTDOMAIN );
36
+ return $tabs;
37
+ }
38
+
39
+
40
+ /**
41
+ * Add active sites based on license key
42
+ * @since 0.2.0
43
+ */
44
+ function active_sites() {
45
+ echo '
46
+ <br /><hr />
47
+ <h3>Active Licenses</h3>
48
+ <table class="wp-list-table widefat fixed tags" style="background-color: transparent;">
49
+ <tbody>
50
+ <tr>
51
+ <th scope="row"><b>'. __( 'Plugin Name', CF7SKINS_TEXTDOMAIN ) .'</b></th>
52
+ <th scope="row"><b>'. __( 'License Key', CF7SKINS_TEXTDOMAIN ) .'</b></th>
53
+ <th scope="row"><b>'. __( 'Site URL', CF7SKINS_TEXTDOMAIN ) .'</b></th>
54
+ </tr>';
55
+
56
+
57
+ if( is_array( $logs = get_option( 'cf7skins_activation' ) ) ) {
58
+ foreach( $logs as $slug => $log ) {
59
+ echo '<tr>';
60
+ echo '<td>'. $log->item_name .'</td>';
61
+ echo '<td>'. $log->license_key .'</td>';
62
+
63
+ echo '<td>';
64
+ $sites = json_decode( $log->sites );
65
+ foreach( $sites as $site )
66
+ echo $site . '<br />';
67
+ echo '</td>';
68
+ echo '</tr>';
69
+ }
70
+ }
71
+
72
+ echo '
73
+ </tbody>
74
+ </table>';
75
+ }
76
+
77
+ } new CF7_Skins_License();
includes/logs.php CHANGED
@@ -25,6 +25,7 @@ class CF7_Skins_Log {
25
  add_action( 'cf7skins_setting_info', array( &$this, 'activation_log' ) );
26
  add_action( 'cf7skins_setting_info', array( &$this, 'deactivation_log' ) );
27
  add_action( 'admin_init', array( $this, 'page_init' ) );
 
28
  }
29
 
30
 
@@ -83,15 +84,20 @@ class CF7_Skins_Log {
83
  return;
84
 
85
  if( is_array( $logs = get_option( 'cf7skins_get_version' ) ) ) {
 
 
86
  foreach( $logs as $key => $value ) {
87
- echo "<strong>$key</strong><br />";
88
 
89
  if( $value )
90
  foreach( $value as $k => $v )
91
- echo "$k: $v<br />";
92
 
93
- echo '<br />';
94
  }
 
 
 
95
  } else {
96
  _e( 'Not available', $this->textdomain );
97
  }
@@ -110,15 +116,15 @@ class CF7_Skins_Log {
110
  return;
111
 
112
  if( is_array( $logs = get_option( 'cf7skins_activation' ) ) ) {
 
113
  foreach( $logs as $key => $value ) {
114
- echo "<strong>$key</strong><br />";
115
-
116
- if( $value )
117
- foreach( $value as $k => $v )
118
- echo "$k: $v<br />";
119
-
120
- echo '<input type="submit" value="Delete Status" name="'. $key .'_delete_status" class="button" /><br /><br />';
121
  }
 
 
 
122
  } else {
123
  _e( 'Not available', $this->textdomain );
124
  }
@@ -164,18 +170,40 @@ class CF7_Skins_Log {
164
  return;
165
 
166
  if( is_array( $logs = get_option( 'cf7skins_deactivation' ) ) ) {
 
167
  foreach( $logs as $key => $value ) {
168
- echo "<strong>$key</strong><br />";
169
-
170
- if( $value )
171
- foreach( $value as $k => $v )
172
- echo "$k: $v<br />";
173
-
174
- echo '<br />';
175
  }
 
 
176
  } else {
177
  _e( 'Not available', $this->textdomain );
178
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
179
  }
180
 
181
  } // End class
25
  add_action( 'cf7skins_setting_info', array( &$this, 'activation_log' ) );
26
  add_action( 'cf7skins_setting_info', array( &$this, 'deactivation_log' ) );
27
  add_action( 'admin_init', array( $this, 'page_init' ) );
28
+ add_action( 'cf7skins_settings_enqueue_script', array( $this, 'enqueue_script' ) );
29
  }
30
 
31
 
84
  return;
85
 
86
  if( is_array( $logs = get_option( 'cf7skins_get_version' ) ) ) {
87
+
88
+ $string = '';
89
  foreach( $logs as $key => $value ) {
90
+ $string .= '### '. strtoupper( $key ) .' ###' . "\n\n";
91
 
92
  if( $value )
93
  foreach( $value as $k => $v )
94
+ $string .= "$k: $v". "\n\n";
95
 
96
+ $string .= "\n\n";
97
  }
98
+
99
+ echo '<textarea readonly="readonly" class="cf7skins-log">'. print_r( $string, true ) .'</textarea>';
100
+
101
  } else {
102
  _e( 'Not available', $this->textdomain );
103
  }
116
  return;
117
 
118
  if( is_array( $logs = get_option( 'cf7skins_activation' ) ) ) {
119
+ $string = '';
120
  foreach( $logs as $key => $value ) {
121
+ echo '<input type="submit" value="Delete Status ('. $key .')" name="'. $key .'_delete_status" class="button" /> ';
122
+ $string .= '### '. strtoupper( $key ) . ' ###'. "\n\n";
123
+ $string .= print_r( $value, true ). "\n\n";
 
 
 
 
124
  }
125
+
126
+ echo '<br /><br /><textarea readonly="readonly" class="cf7skins-log">'. print_r( $string, true ) .'</textarea>';
127
+
128
  } else {
129
  _e( 'Not available', $this->textdomain );
130
  }
170
  return;
171
 
172
  if( is_array( $logs = get_option( 'cf7skins_deactivation' ) ) ) {
173
+ $string = '';
174
  foreach( $logs as $key => $value ) {
175
+ $string .= '### '. strtoupper( $key ) .' ###'. "\n\n";
176
+ $string .= print_r( $value, true ). "\n\n";
 
 
 
 
 
177
  }
178
+
179
+ echo '<textarea readonly="readonly" class="cf7skins-log">'. print_r( $string, true ) .'</textarea>';
180
  } else {
181
  _e( 'Not available', $this->textdomain );
182
  }
183
+ }
184
+
185
+
186
+ /**
187
+ * Custom script and style for the setting page panel
188
+ *
189
+ * @param none
190
+ * @since 1.1.1
191
+ */
192
+ function enqueue_script() {
193
+ ?>
194
+ <style type="text/css">
195
+ .cf7skins-log {
196
+ background: transparent;
197
+ display: block;
198
+ font-family: Menlo,Monaco,monospace;
199
+ height: 400px;
200
+ overflow: auto;
201
+ font-size: 11px;
202
+ white-space: pre;
203
+ width: 100%;"
204
+ }
205
+ </style>
206
+ <?php
207
  }
208
 
209
  } // End class
includes/settings.php CHANGED
@@ -63,6 +63,9 @@ class CF7_Skins_Settings {
63
  */
64
  function enqueue_script() {
65
  wp_enqueue_script( $this->slug, CF7SKINS_URL . 'js/jquery.settings.js', array( 'jquery', 'jquery-ui-sortable' ), CF7SKINS_VERSION );
 
 
 
66
  }
67
 
68
 
@@ -122,6 +125,14 @@ class CF7_Skins_Settings {
122
  foreach( $this->tabs as $tab => $name ) {
123
  add_settings_section( $tab, '', '', $this->slug );
124
  }
 
 
 
 
 
 
 
 
125
 
126
  /* Add Initial Fields
127
  *
@@ -143,7 +154,16 @@ class CF7_Skins_Settings {
143
  'label' => __( 'Custom Styles & Scripts', $this->textdomain ),
144
  'type' => 'textarea',
145
  'description' => __( 'Print your custom scripts or styles with the tag to push to the wp_head().', $this->textdomain ),
146
- ),*/
 
 
 
 
 
 
 
 
 
147
  'display_log' => array(
148
  'section' => 'advanced',
149
  'label' => __( 'Display Log', $this->textdomain ),
@@ -181,7 +201,7 @@ class CF7_Skins_Settings {
181
  }
182
  }
183
  update_option( $this->slug, $array );
184
- }
185
  }
186
 
187
 
@@ -249,9 +269,17 @@ class CF7_Skins_Settings {
249
  break;
250
 
251
  case 'checkbox':
252
- $value = isset( $this->options[$id] ) ? $this->options[$id] : false;
253
- printf( '<label><input id="%1$s" name="'.$this->slug.'[%1$s]" type="checkbox" value="1" %2$s />%3$s</label>',
254
- $id, $value ? 'checked="checked"' : '', $detail );
 
 
 
 
 
 
 
 
255
  break;
256
 
257
  case 'color-scheme':
63
  */
64
  function enqueue_script() {
65
  wp_enqueue_script( $this->slug, CF7SKINS_URL . 'js/jquery.settings.js', array( 'jquery', 'jquery-ui-sortable' ), CF7SKINS_VERSION );
66
+
67
+ // Filter action @since 1.1.1
68
+ do_action( 'cf7skins_settings_enqueue_script' );
69
  }
70
 
71
 
125
  foreach( $this->tabs as $tab => $name ) {
126
  add_settings_section( $tab, '', '', $this->slug );
127
  }
128
+
129
+ /*
130
+ // Get styles list for the custom enqueue styles
131
+ $styles = array();
132
+ $get_styles = CF7_Skin_Style::cf7s_get_style_list();
133
+ foreach( $get_styles as $k => $v )
134
+ $styles[$k] = $v['details']['Style Name'];
135
+ */
136
 
137
  /* Add Initial Fields
138
  *
154
  'label' => __( 'Custom Styles & Scripts', $this->textdomain ),
155
  'type' => 'textarea',
156
  'description' => __( 'Print your custom scripts or styles with the tag to push to the wp_head().', $this->textdomain ),
157
+ ),
158
+ 'enqueue_styles' => array(
159
+ 'section' => 'advanced',
160
+ 'label' => __( 'Enqueue Styles', $this->textdomain ),
161
+ 'type' => 'checkbox',
162
+ 'default' => array(),
163
+ 'detail' => $styles,
164
+ 'description' => __( 'Enqueue selected styles for whole site pages header.', $this->textdomain ),
165
+ ),
166
+ */
167
  'display_log' => array(
168
  'section' => 'advanced',
169
  'label' => __( 'Display Log', $this->textdomain ),
201
  }
202
  }
203
  update_option( $this->slug, $array );
204
+ }
205
  }
206
 
207
 
269
  break;
270
 
271
  case 'checkbox':
272
+ if ( is_array( $detail ) ) {
273
+ $value = isset( $this->options[$id] ) ? $this->options[$id] : array();
274
+ foreach( $detail as $k => $v )
275
+ printf( '<label><input id="%1$s" name="'.$this->slug.'[%1$s][%2$s]" type="checkbox" value="1" %3$s />%4$s</label><br />',
276
+ $id, $k, isset( $value[$k] ) ? 'checked="checked"' : '', $v );
277
+
278
+ } else {
279
+ $value = isset( $this->options[$id] ) ? $this->options[$id] : false;
280
+ printf( '<label><input id="%1$s" name="'.$this->slug.'[%1$s]" type="checkbox" value="1" %2$s />%3$s</label>',
281
+ $id, $value ? 'checked="checked"' : '', $detail );
282
+ }
283
  break;
284
 
285
  case 'color-scheme':
index.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Contact Form 7 Skins
4
  * Plugin URI: http://cf7skins.com
5
  * Description: Adds Skins including Templates & Styles to Contact Form 7. Requires Contact Form 7.
6
- * Version: 1.1
7
  * Author: Neil Murray
8
  * Author URI: http://cf7skins.com
9
  * License: GPL-2.0+
@@ -44,7 +44,7 @@ if ( ! defined( 'ABSPATH' ) )
44
  *
45
  * @since 0.0.1
46
  */
47
- define( 'CF7SKINS_VERSION', '1.1' );
48
  define( 'CF7SKINS_OPTIONS', 'cf7skins' );
49
  define( 'CF7SKINS_TEXTDOMAIN', 'cf7skins' );
50
  define( 'CF7SKINS_FEATURE_FILTER', false ); // @since 0.4.0
@@ -144,6 +144,7 @@ function cf7skins_plugin_loaded() {
144
  // Load required files only for admin/backend
145
  if( is_admin() ) {
146
  require_once( CF7SKINS_PATH . 'includes/admin.php' );
 
147
  require_once( CF7SKINS_PATH . 'includes/tab.php' );
148
  }
149
 
3
  * Plugin Name: Contact Form 7 Skins
4
  * Plugin URI: http://cf7skins.com
5
  * Description: Adds Skins including Templates & Styles to Contact Form 7. Requires Contact Form 7.
6
+ * Version: 1.1.1
7
  * Author: Neil Murray
8
  * Author URI: http://cf7skins.com
9
  * License: GPL-2.0+
44
  *
45
  * @since 0.0.1
46
  */
47
+ define( 'CF7SKINS_VERSION', '1.1.1' );
48
  define( 'CF7SKINS_OPTIONS', 'cf7skins' );
49
  define( 'CF7SKINS_TEXTDOMAIN', 'cf7skins' );
50
  define( 'CF7SKINS_FEATURE_FILTER', false ); // @since 0.4.0
144
  // Load required files only for admin/backend
145
  if( is_admin() ) {
146
  require_once( CF7SKINS_PATH . 'includes/admin.php' );
147
+ require_once( CF7SKINS_PATH . 'includes/license.php' );
148
  require_once( CF7SKINS_PATH . 'includes/tab.php' );
149
  }
150
 
languages/cf7skins-id_ID.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Contact Form 7 Skins 0.0\n"
6
  "Report-Msgid-Bugs-To: \n"
7
- "POT-Creation-Date: 2015-02-05 11:18+0700\n"
8
- "PO-Revision-Date: 2015-02-05 12:32+0700\n"
9
  "Last-Translator: Selz <engineer@selz.com>\n"
10
  "Language-Team: Neil Murray <nmurray@exemail.com.au>\n"
11
  "Language: en_US\n"
@@ -18,41 +18,45 @@ msgstr ""
18
  "X-Generator: Poedit 1.5.7\n"
19
  "X-Poedit-SearchPath-0: ..\n"
20
 
21
- #: ../index.php:208
22
  #, php-format
23
  msgid "<a href=\"%s\">Contact Form 7</a> must be installed to use this plugin."
24
  msgstr ""
25
  "Silahkan install <a href=\"%s\">Contact Form 7</a> agar plugin ini berfungsi."
26
 
27
- #: ../includes/admin.php:94
28
  msgid "Loading template..."
29
  msgstr "Memuat templat..."
30
 
31
- #: ../includes/admin.php:95
32
  msgid "Empty filter, please select a filter."
33
  msgstr "Filter kosong, silahkan pilih sebuah filter."
34
 
35
- #: ../includes/admin.php:96 ../includes/style.php:376
36
- #: ../includes/style.php:413 ../includes/template.php:383
37
- #: ../includes/template.php:421
38
  msgid "Select"
39
  msgstr "Pilih"
40
 
41
- #: ../includes/admin.php:97 ../includes/style.php:376
42
- #: ../includes/style.php:413 ../includes/template.php:383
43
- #: ../includes/template.php:421
44
  msgid "Selected"
45
  msgstr "Terpilih"
46
 
47
- #: ../includes/admin.php:98 ../includes/style.php:423
48
- #: ../includes/template.php:430
49
  msgid "Expanded View"
50
  msgstr "Tampilan Luas"
51
 
52
- #: ../includes/admin.php:114
53
  msgid "Skins"
54
  msgstr "Gaya"
55
 
 
 
 
 
56
  #: ../includes/EDD_SL_Plugin_Updater.php:177
57
  #, php-format
58
  msgid ""
@@ -81,49 +85,39 @@ msgstr "Anda tidak memiliki perijinan untuk membarui plugin"
81
  msgid "Error"
82
  msgstr "Gagal"
83
 
84
- #: ../includes/license.php:72
85
  msgid "Licenses"
86
  msgstr "Lisensi"
87
 
88
- #: ../includes/license.php:92
89
- msgid "Skins License Key"
90
- msgstr "Kode Lisensi Skins"
91
 
92
- #: ../includes/license.php:95
93
- msgid "Enter your CF7 Skins license key and save before activating."
94
- msgstr ""
95
- "Masukkan kode lisensi CF7 Skins anda dan simpan sebelum melakukan aktivasi."
96
 
97
- #: ../includes/license.php:257
98
- #, php-format
99
- msgid ""
100
- "Please activate your <a href=\"%1$s\" target=\"_blank\">License Key</a> to "
101
- "access Contact Form 7 Skins plus automatic upgrades and premium email "
102
- "support. Need a license key? <a href=\"%1$s\" target=\"_blank\">Purchase one "
103
- "now</a>."
104
- msgstr ""
105
- "Mohon aktifkan <a href=\"%1$s\" target=\"_blank\">Kode Lisensi</a> anda "
106
- "untuk mengakses Contact Form 7 Skins dan pembaruan otomatis serta layanan "
107
- "bantuan surel. Butuh kode lisensi? <a href=\"%1$s\" target=\"_blank\">Beli "
108
- "satu sekarang</a>."
109
 
110
- #: ../includes/logs.php:39
111
  msgid "Logs"
112
  msgstr "Log"
113
 
114
- #: ../includes/logs.php:53
115
  msgid "Get Version"
116
  msgstr "Minta Versi"
117
 
118
- #: ../includes/logs.php:59
119
  msgid "Activation"
120
  msgstr "Aktivasi"
121
 
122
- #: ../includes/logs.php:65
123
  msgid "Deactivation"
124
  msgstr "Deaktivasi"
125
 
126
- #: ../includes/logs.php:96 ../includes/logs.php:123 ../includes/logs.php:171
127
  msgid "Not available"
128
  msgstr "Tidak tersedia"
129
 
@@ -135,241 +129,241 @@ msgstr "Umum"
135
  msgid "Advanced"
136
  msgstr "Tingkat Lanjut"
137
 
138
- #: ../includes/settings.php:82
139
  msgid "Contact Form 7 Skins Settings"
140
  msgstr "Pengaturan Contact Form 7 Skins"
141
 
142
- #: ../includes/settings.php:99
143
  msgid "Save Changes"
144
  msgstr "Simpan Perubahan"
145
 
146
- #: ../includes/settings.php:136
147
  msgid "Color Scheme"
148
  msgstr "Skema Warna"
149
 
150
- #: ../includes/settings.php:139
151
  msgid "Select color scheme for CF7 Skins interface."
152
  msgstr "Pilih warna skema untuk tampilan CF7 Skins"
153
 
154
- #: ../includes/settings.php:149
155
  msgid "Display Log"
156
  msgstr "Tampilan Log"
157
 
158
- #: ../includes/settings.php:152
159
  msgid "Displays plugin log tab."
160
  msgstr "Tampilkan papan log plugin"
161
 
162
- #: ../includes/settings.php:156
163
  msgid "Delete Settings"
164
  msgstr "Hapus Pengaturan"
165
 
166
- #: ../includes/settings.php:159
167
  msgid "Remove all plugin data on plugin deletion."
168
  msgstr "Hapus semua data saat penghapusan plugin."
169
 
170
- #: ../includes/settings.php:284
171
  msgid "active"
172
  msgstr "aktif"
173
 
174
- #: ../includes/settings.php:285
175
  msgid "Deactivate License"
176
  msgstr "Non-aktifkan Lisensi"
177
 
178
- #: ../includes/settings.php:288
179
  msgid "invalid"
180
  msgstr "absah"
181
 
182
- #: ../includes/settings.php:290
183
  msgid "Activate License"
184
  msgstr "Aktifkan Lisensi"
185
 
186
- #: ../includes/settings.php:331
187
  msgid "Default"
188
  msgstr "Standar"
189
 
190
- #: ../includes/settings.php:337
191
  msgid "Wheat"
192
  msgstr "Gandum"
193
 
194
- #: ../includes/settings.php:343
195
  msgid "Ocean"
196
  msgstr "Lautan"
197
 
198
- #: ../includes/style.php:140 ../includes/style.php:221
199
- #: ../includes/style.php:310
200
  msgid "Colors"
201
  msgstr "Warna"
202
 
203
- #: ../includes/style.php:141
204
  msgid "Black"
205
  msgstr "Hitam"
206
 
207
- #: ../includes/style.php:142
208
  msgid "Brown"
209
  msgstr "Coklat"
210
 
211
- #: ../includes/style.php:143
212
  msgid "Gray"
213
  msgstr "Abu-abu"
214
 
215
- #: ../includes/style.php:144
216
  msgid "Green"
217
  msgstr "Hijau"
218
 
219
- #: ../includes/style.php:145
220
  msgid "Orange"
221
  msgstr "Oranye"
222
 
223
- #: ../includes/style.php:146
224
  msgid "Pink"
225
  msgstr "Merah Jambu"
226
 
227
- #: ../includes/style.php:147
228
  msgid "Purple"
229
  msgstr "Ungu"
230
 
231
- #: ../includes/style.php:148
232
  msgid "Red"
233
  msgstr "Merah"
234
 
235
- #: ../includes/style.php:149
236
  msgid "Silver"
237
  msgstr "Perak"
238
 
239
- #: ../includes/style.php:150
240
  msgid "Tan"
241
  msgstr "Coklat"
242
 
243
- #: ../includes/style.php:151
244
  msgid "White"
245
  msgstr "Putih"
246
 
247
- #: ../includes/style.php:152
248
  msgid "Yellow"
249
  msgstr "Kuning"
250
 
251
- #: ../includes/style.php:153
252
  msgid "Dark"
253
  msgstr "Hitam"
254
 
255
- #: ../includes/style.php:154
256
  msgid "Light"
257
  msgstr "Cerah"
258
 
259
- #: ../includes/style.php:157
260
  msgid "Layout"
261
  msgstr "Tatanan Tertentu"
262
 
263
- #: ../includes/style.php:158 ../includes/template.php:174
264
  msgid "Fixed Layout"
265
  msgstr "Tatanan Tertentu"
266
 
267
- #: ../includes/style.php:159 ../includes/template.php:175
268
  msgid "Fluid Layout"
269
  msgstr "Tatanan Fluid"
270
 
271
- #: ../includes/style.php:160 ../includes/template.php:176
272
  msgid "Responsive Layout"
273
  msgstr "Tatanan Fleksibel"
274
 
275
- #: ../includes/style.php:161 ../includes/template.php:177
276
  msgid "One Column"
277
  msgstr "Satu Kolom"
278
 
279
- #: ../includes/style.php:162 ../includes/template.php:178
280
  msgid "One or Two Column"
281
  msgstr "Satu atau Dua Kolom"
282
 
283
- #: ../includes/style.php:163 ../includes/template.php:179
284
  msgid "One, Two or Three Column"
285
  msgstr "Satu, Dua atau Tiga Kolom"
286
 
287
- #: ../includes/style.php:166
288
  msgid "Features"
289
  msgstr "Difiturkan"
290
 
291
- #: ../includes/style.php:167 ../includes/template.php:183
292
  msgid "Fieldsets"
293
  msgstr "Fieldset"
294
 
295
- #: ../includes/style.php:168 ../includes/template.php:184
296
  msgid "Background"
297
  msgstr "Warna latar"
298
 
299
- #: ../includes/style.php:169 ../includes/template.php:185
300
  msgid "Gradients"
301
  msgstr "Gradien"
302
 
303
- #: ../includes/style.php:172
304
- #: ../skins/templates/default/default-cf7-form.php:23
305
  msgid "Subject"
306
  msgstr "Subjek"
307
 
308
- #: ../includes/style.php:173 ../includes/template.php:189
309
  msgid "Business"
310
  msgstr "Bisnis"
311
 
312
- #: ../includes/style.php:174 ../includes/template.php:190
313
  #: ../skins/templates/event/event.php:18
314
  msgid "Event"
315
  msgstr "Peristiwa"
316
 
317
- #: ../includes/style.php:175 ../includes/template.php:191
318
  msgid "Holiday"
319
  msgstr "Liburan"
320
 
321
- #: ../includes/style.php:176 ../includes/template.php:192
322
  msgid "Individual"
323
  msgstr "Pribadi"
324
 
325
- #: ../includes/style.php:177 ../includes/template.php:193
326
  msgid "Seasonal"
327
  msgstr "Musiman"
328
 
329
- #: ../includes/style.php:198 ../includes/style.php:286
330
  msgid "All available Styles"
331
  msgstr "Semua Gaya yang tersedia"
332
 
333
- #: ../includes/style.php:198 ../includes/style.php:286
334
- #: ../includes/template.php:213 ../includes/template.php:297
335
  msgid "All"
336
  msgstr "Semuanya"
337
 
338
- #: ../includes/style.php:199 ../includes/style.php:287
339
  msgid "Selected by the CF7 Skins team"
340
  msgstr "Dipilih oleh team CF7 Skins"
341
 
342
- #: ../includes/style.php:199 ../includes/style.php:287
343
- #: ../includes/template.php:214 ../includes/template.php:298
344
  msgid "Featured"
345
  msgstr "Difiturkan"
346
 
347
- #: ../includes/style.php:200 ../includes/style.php:288
348
- #: ../includes/template.php:215 ../includes/template.php:299
349
  msgid "Commonly used"
350
  msgstr "Yang sering digunakan"
351
 
352
- #: ../includes/style.php:200 ../includes/style.php:288
353
- #: ../includes/template.php:215 ../includes/template.php:299
354
  msgid "Popular"
355
  msgstr "Populer"
356
 
357
- #: ../includes/style.php:201 ../includes/style.php:289
358
- #: ../includes/template.php:216 ../includes/template.php:300
359
  msgid "Recently added"
360
  msgstr "Terbaru ditambahkan"
361
 
362
- #: ../includes/style.php:201 ../includes/style.php:289
363
- #: ../includes/template.php:216 ../includes/template.php:300
364
  msgid "Latest"
365
  msgstr "Terbaru"
366
 
367
- #: ../includes/style.php:207 ../includes/style.php:293
368
- #: ../includes/template.php:222 ../includes/template.php:304
369
  msgid "Narrow your choices based on your specific requirements"
370
  msgstr "Batasi pilihan anda berdasarkan persayaratan spesifik"
371
 
372
- #: ../includes/style.php:212 ../includes/style.php:303
373
  msgid ""
374
  "Check all the boxes that meet your specific requirements and then click "
375
  "apply filters."
@@ -377,28 +371,28 @@ msgstr ""
377
  "Centang semua kotak yang sesuai dengan persayaratan spesifik anda and tekan "
378
  "gunakan filter."
379
 
380
- #: ../includes/style.php:212 ../includes/style.php:303
381
- #: ../includes/template.php:227 ../includes/template.php:314
382
  msgid "Apply Filters"
383
  msgstr "Gunakan Filter"
384
 
385
- #: ../includes/style.php:213 ../includes/style.php:304
386
- #: ../includes/template.php:228 ../includes/template.php:315
387
  msgid "Clear"
388
  msgstr "Bersihkan"
389
 
390
- #: ../includes/style.php:240 ../includes/style.php:328
391
- #: ../includes/template.php:251 ../includes/template.php:335
392
  msgid "Filtering by:"
393
  msgstr "Memfilter dengan:"
394
 
395
- #: ../includes/style.php:242 ../includes/style.php:330
396
- #: ../includes/template.php:253 ../includes/template.php:337
397
  msgid "Edit"
398
  msgstr "Ubah"
399
 
400
- #: ../includes/style.php:247 ../includes/style.php:335
401
- #: ../includes/template.php:258 ../includes/template.php:341
402
  msgid ""
403
  "Sort by Name, Date and License (free or pro) – use arrow to reverse sort "
404
  "order"
@@ -406,13 +400,13 @@ msgstr ""
406
  "Urut berdasarkan Nama, Tanggal dan Lisensi (gratis atau pro) – gunakan panah "
407
  "untuk membalikkan urutan"
408
 
409
- #: ../includes/style.php:247 ../includes/style.php:335
410
- #: ../includes/template.php:258 ../includes/template.php:341
411
  msgid "Sort by"
412
  msgstr "Urut dengan"
413
 
414
- #: ../includes/style.php:249 ../includes/style.php:337
415
- #: ../includes/template.php:260 ../includes/template.php:343
416
  #: ../skins/templates/event/event.php:20
417
  #: ../skins/templates/fieldset-basic/fieldset-basic.php:20
418
  #: ../skins/templates/fieldset-in-fieldset/fieldset-in-fieldset.php:20
@@ -421,25 +415,25 @@ msgstr "Urut dengan"
421
  msgid "Name"
422
  msgstr "Nama"
423
 
424
- #: ../includes/style.php:250 ../includes/style.php:338
425
- #: ../includes/template.php:261 ../includes/template.php:344
426
  msgid "Date"
427
  msgstr "Tanggal"
428
 
429
- #: ../includes/style.php:251 ../includes/style.php:339
430
- #: ../includes/template.php:262 ../includes/template.php:345
431
  msgid "License"
432
  msgstr "Lisensi"
433
 
434
- #: ../includes/style.php:255 ../includes/style.php:297
435
  msgid "Search Styles"
436
  msgstr "Cari Gaya"
437
 
438
- #: ../includes/style.php:256 ../includes/style.php:298
439
  msgid "Search styles..."
440
  msgstr "Cari gaya..."
441
 
442
- #: ../includes/style.php:392 ../includes/style.php:424
443
  msgid ""
444
  "Select to apply the Style to your form - is applied to your form once you "
445
  "Save."
@@ -447,7 +441,7 @@ msgstr ""
447
  "Pilih untuk menerapkan Gaya tersebut ke form anda - diterapkan ke form anda "
448
  "setelah disimpan."
449
 
450
- #: ../includes/style.php:393
451
  msgid ""
452
  "Show detailed information about this Style - overview of the appearance and "
453
  "layout with description and usage details."
@@ -455,52 +449,47 @@ msgstr ""
455
  "Menampilkan informasi detail mengenai Gaya ini - peninjauan tampilan dan "
456
  "susunan dengan detail gambaran dan penggunaan."
457
 
458
- #: ../includes/style.php:393 ../includes/style.php:427
459
- #: ../includes/template.php:401 ../includes/template.php:434
460
  #: ../skins/templates/suggestion/suggestion.php:24
461
  msgid "Details"
462
  msgstr "Detail"
463
 
464
- #: ../includes/style.php:423
465
  msgid ""
466
- "Use Expanded View to view styles features - shows all form fields available "
467
  "in Contact Form 7."
468
  msgstr ""
469
  "Gunakan Tampilan Luas untuk melihat fitur gaya - menampilkan semua bagian "
470
  "form yang tersedia di Contact Form 7."
471
 
472
- #: ../includes/style.php:425
473
  msgid "Return to Style Gallery/Grid view."
474
  msgstr "Kembalik ke Galeri Gaya/tampilan Grid"
475
 
476
- #: ../includes/style.php:425 ../includes/style.php:445
477
- #: ../includes/template.php:432 ../includes/template.php:451
478
  msgid "Close"
479
  msgstr "Tutup"
480
 
481
- #: ../includes/style.php:430 ../includes/template.php:437
482
- msgid "Version: "
483
- msgstr "Versi:"
484
-
485
- #: ../includes/style.php:432 ../includes/style.php:450
486
- #: ../includes/template.php:439 ../includes/template.php:456
487
  msgid "Description"
488
  msgstr "Deskripsi"
489
 
490
- #: ../includes/style.php:435 ../includes/style.php:453
491
- #: ../includes/template.php:442 ../includes/template.php:459
492
  msgid "Instructions"
493
  msgstr "Instruksi"
494
 
495
- #: ../includes/style.php:443 ../includes/template.php:449
496
  msgid "Return to Details View"
497
  msgstr "Kembali ke Tampilan Detail"
498
 
499
- #: ../includes/style.php:443 ../includes/template.php:449
500
  msgid "Details View"
501
  msgstr "Tampilan Detail"
502
 
503
- #: ../includes/style.php:444
504
  msgid ""
505
  "Select to apply the Style to your form - is applied to your form once you "
506
  "Save"
@@ -508,35 +497,35 @@ msgstr ""
508
  "Pilih untuk menarapkan Gaya ke form anda - diterapkan pada saat anda "
509
  "menyimpan."
510
 
511
- #: ../includes/style.php:445
512
  msgid "Return to Style Gallery/Grid View"
513
  msgstr "Kembalik ke Galeri Gaya/Tampilan Kotak"
514
 
515
- #: ../includes/tab.php:29 ../includes/tab.php:225
516
  msgid "Template"
517
  msgstr "Templat"
518
 
519
- #: ../includes/tab.php:30 ../includes/tab.php:233
520
  msgid "Style"
521
  msgstr "Gaya"
522
 
523
- #: ../includes/tab.php:125
524
  msgid "No templates found. Try a different search."
525
  msgstr "Templat tidak ditemukan. Coba pencarian lain."
526
 
527
- #: ../includes/tab.php:201
528
  msgid "No styles found. Try a different search."
529
  msgstr "Gaya tidak ditemukan. Coba pencarian lain"
530
 
531
- #: ../includes/tab.php:226
532
  msgid ""
533
  "Each Template acts as an easy to follow guide, which can be adapted to your "
534
- "requirements < Templates >"
535
  msgstr ""
536
  "Setiap templat bertindak sebagai panduan yang mudah diikuti, dan dapat "
537
  "diadaptasikan sesua dengan kebutuhan anda < Templat >"
538
 
539
- #: ../includes/tab.php:227
540
  msgid ""
541
  "Choose a Template for your form – then you can add, copy or remove fields to "
542
  "match your requirements."
@@ -544,77 +533,77 @@ msgstr ""
544
  "Pilih sebuah templat untuk form anda – kemudian anda bisa manambahkan, "
545
  "menyalin atau menghapus bagian form sesuai dengan kebutuhan anda."
546
 
547
- #: ../includes/tab.php:234
548
  msgid ""
549
  "Each Style covers the full range of standard form elements available within "
550
- "Contact Form 7 <Styles>"
551
  msgstr ""
552
  "Setiap Gaya melingkupi seluruh rentang elemen form standar yang tersedia "
553
  "pada Contact Form 7 <Gaya>"
554
 
555
- #: ../includes/tab.php:235
556
  msgid ""
557
  "You can change the Style applied to your form by simply selecting a "
558
  "different Style"
559
  msgstr "Anda bisa mengubah Gaya yang diterapkan dengan memilih Gaya yang lain."
560
 
561
- #: ../includes/tab.php:242
562
  msgid "!"
563
  msgstr "!"
564
 
565
- #: ../includes/tab.php:243 ../includes/tab.php:308
566
  msgid "?"
567
  msgstr "?"
568
 
569
- #: ../includes/tab.php:281
570
  msgid "Documentation"
571
  msgstr "Dokumentasi"
572
 
573
- #: ../includes/tab.php:282
574
  msgid "FAQ"
575
  msgstr "Tanya Jawab"
576
 
577
- #: ../includes/tab.php:283
578
  msgid "Tutorials"
579
  msgstr "Tutorial"
580
 
581
- #: ../includes/tab.php:284
582
  msgid "Knowledge Base"
583
  msgstr "Pengatahuan Dasar"
584
 
585
- #: ../includes/tab.php:295
586
  msgid "Support"
587
  msgstr "Bantuan"
588
 
589
- #: ../includes/tab.php:296
590
  msgid "Blog"
591
  msgstr "Blog"
592
 
593
- #: ../includes/tab.php:297
594
  msgid "Pro Version"
595
  msgstr "Versi Pro"
596
 
597
- #: ../includes/template.php:213 ../includes/template.php:297
598
  msgid "All available Templates"
599
  msgstr "Semua templat yang tersedia"
600
 
601
- #: ../includes/template.php:214 ../includes/template.php:298
602
  msgid "Selected by CF7 Skins Team"
603
  msgstr "Dipilih oleh team CF7 Skins"
604
 
605
- #: ../includes/template.php:222 ../includes/template.php:304
606
  msgid "Feature Filter"
607
  msgstr "Fitur Filter"
608
 
609
- #: ../includes/template.php:266 ../includes/template.php:308
610
  msgid "Search Templates"
611
  msgstr "Cari Templat"
612
 
613
- #: ../includes/template.php:267 ../includes/template.php:309
614
  msgid "Search templates..."
615
  msgstr "Cari templat"
616
 
617
- #: ../includes/template.php:400
618
  msgid ""
619
  "Select to apply the Template to your form - appears in the form editing "
620
  "area, where you can edit your requirements."
@@ -622,7 +611,7 @@ msgstr ""
622
  "Pilih untuk menerapkan Templat ke form anda - ditampilkan pada bagian "
623
  "penyuntingan form, dimana anda dapat menyunting sesuai kebutuhan."
624
 
625
- #: ../includes/template.php:401
626
  msgid ""
627
  "Show detailed information about this Template, with layout, description and "
628
  "usage details."
@@ -630,15 +619,15 @@ msgstr ""
630
  "Menampilkan informasi detail mengenai Templat ini, dengan susunan, "
631
  "penjelasan dan detail penggunaan."
632
 
633
- #: ../includes/template.php:430
634
  msgid ""
635
- "Use Expanded View to view template features - shows layout, description & "
636
  "usage details."
637
  msgstr ""
638
  "Gunakan Tampilan Luas untuk melihat fitur templat - menampilkan susunan, "
639
  "penjelasan dan detail penggunaan."
640
 
641
- #: ../includes/template.php:431
642
  msgid ""
643
  "Select to apply the Template to your form - appears in the Form Editing "
644
  "area, where you can edit to your requirements."
@@ -646,11 +635,11 @@ msgstr ""
646
  "Pilih untuk menerapkan Templat ke form anda - tampil di bagaian penyuntingan "
647
  "form, dimana anda bisa menyuntuk sesuai kebutuhan."
648
 
649
- #: ../includes/template.php:432
650
  msgid "Return to Template Gallery/Grid view."
651
  msgstr "Kembali ke Galeri Templat/Tampilan Grid"
652
 
653
- #: ../includes/template.php:450
654
  msgid ""
655
  "Select to apply the Template to your form - appears in the Form editing "
656
  "area, where you can edit to your requirements."
@@ -658,7 +647,7 @@ msgstr ""
658
  "Pilih untuk menerapkan Templat ke form anda - tampil di bagaian penyuntingan "
659
  "form, dimana anda bisa menyuntuk sesuai kebutuhan."
660
 
661
- #: ../includes/template.php:451
662
  msgid "Return to Template Gallery/ Grid View"
663
  msgstr "Kembali ke Galeri Templat/Tampilan Grid"
664
 
@@ -667,7 +656,7 @@ msgid "Contact Form"
667
  msgstr "Form Kontak"
668
 
669
  #: ../skins/templates/contact/contact.php:20
670
- #: ../skins/templates/default/default-cf7-form.php:17
671
  msgid "Your Name (required)"
672
  msgstr "Nama Anda (dibutuhkan)"
673
 
@@ -676,7 +665,7 @@ msgid "Email Address (required)"
676
  msgstr "Alamat Surel (dibutuhkan)"
677
 
678
  #: ../skins/templates/contact/contact.php:22
679
- #: ../skins/templates/default/default-cf7-form.php:26
680
  msgid "Your Message"
681
  msgstr "Pesan Anda"
682
 
@@ -699,11 +688,11 @@ msgstr "Ajukan"
699
  msgid "Required"
700
  msgstr "Dibutuhkan"
701
 
702
- #: ../skins/templates/default/default-cf7-form.php:20
703
  msgid "Your Email (required)"
704
  msgstr "Email Anda (dibutuhkan)"
705
 
706
- #: ../skins/templates/default/default-cf7-form.php:29
707
  msgid "Send"
708
  msgstr "Kirim"
709
 
@@ -1087,6 +1076,25 @@ msgstr "Sedikit Buruk"
1087
  msgid "Much Worse"
1088
  msgstr "Lebih Buruk"
1089
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1090
  #~ msgid "Custom Styles & Scripts"
1091
  #~ msgstr "Tambahan Gaya & Skrip"
1092
 
4
  msgstr ""
5
  "Project-Id-Version: Contact Form 7 Skins 0.0\n"
6
  "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2015-08-26 20:34+0700\n"
8
+ "PO-Revision-Date: 2015-08-26 20:35+0700\n"
9
  "Last-Translator: Selz <engineer@selz.com>\n"
10
  "Language-Team: Neil Murray <nmurray@exemail.com.au>\n"
11
  "Language: en_US\n"
18
  "X-Generator: Poedit 1.5.7\n"
19
  "X-Poedit-SearchPath-0: ..\n"
20
 
21
+ #: ../index.php:174
22
  #, php-format
23
  msgid "<a href=\"%s\">Contact Form 7</a> must be installed to use this plugin."
24
  msgstr ""
25
  "Silahkan install <a href=\"%s\">Contact Form 7</a> agar plugin ini berfungsi."
26
 
27
+ #: ../includes/admin.php:93
28
  msgid "Loading template..."
29
  msgstr "Memuat templat..."
30
 
31
+ #: ../includes/admin.php:94
32
  msgid "Empty filter, please select a filter."
33
  msgstr "Filter kosong, silahkan pilih sebuah filter."
34
 
35
+ #: ../includes/admin.php:95 ../includes/style.php:375
36
+ #: ../includes/style.php:412 ../includes/template.php:384
37
+ #: ../includes/template.php:422
38
  msgid "Select"
39
  msgstr "Pilih"
40
 
41
+ #: ../includes/admin.php:96 ../includes/style.php:375
42
+ #: ../includes/style.php:412 ../includes/template.php:384
43
+ #: ../includes/template.php:422
44
  msgid "Selected"
45
  msgstr "Terpilih"
46
 
47
+ #: ../includes/admin.php:97 ../includes/style.php:422
48
+ #: ../includes/template.php:431
49
  msgid "Expanded View"
50
  msgstr "Tampilan Luas"
51
 
52
+ #: ../includes/admin.php:113 ../includes/admin.php:136
53
  msgid "Skins"
54
  msgstr "Gaya"
55
 
56
+ #: ../includes/admin.php:135
57
+ msgid "Click to toggle"
58
+ msgstr "Klik untuk menampilkan"
59
+
60
  #: ../includes/EDD_SL_Plugin_Updater.php:177
61
  #, php-format
62
  msgid ""
85
  msgid "Error"
86
  msgstr "Gagal"
87
 
88
+ #: ../includes/license.php:35
89
  msgid "Licenses"
90
  msgstr "Lisensi"
91
 
92
+ #: ../includes/license.php:51
93
+ msgid "Plugin Name"
94
+ msgstr "Nama Plugin"
95
 
96
+ #: ../includes/license.php:52
97
+ msgid "License Key"
98
+ msgstr "Kode Lisensi Skins"
 
99
 
100
+ #: ../includes/license.php:53
101
+ msgid "Site URL"
102
+ msgstr "URL Situs"
 
 
 
 
 
 
 
 
 
103
 
104
+ #: ../includes/logs.php:40
105
  msgid "Logs"
106
  msgstr "Log"
107
 
108
+ #: ../includes/logs.php:54
109
  msgid "Get Version"
110
  msgstr "Minta Versi"
111
 
112
+ #: ../includes/logs.php:60
113
  msgid "Activation"
114
  msgstr "Aktivasi"
115
 
116
+ #: ../includes/logs.php:66
117
  msgid "Deactivation"
118
  msgstr "Deaktivasi"
119
 
120
+ #: ../includes/logs.php:102 ../includes/logs.php:129 ../includes/logs.php:181
121
  msgid "Not available"
122
  msgstr "Tidak tersedia"
123
 
129
  msgid "Advanced"
130
  msgstr "Tingkat Lanjut"
131
 
132
+ #: ../includes/settings.php:85
133
  msgid "Contact Form 7 Skins Settings"
134
  msgstr "Pengaturan Contact Form 7 Skins"
135
 
136
+ #: ../includes/settings.php:102
137
  msgid "Save Changes"
138
  msgstr "Simpan Perubahan"
139
 
140
+ #: ../includes/settings.php:147
141
  msgid "Color Scheme"
142
  msgstr "Skema Warna"
143
 
144
+ #: ../includes/settings.php:150
145
  msgid "Select color scheme for CF7 Skins interface."
146
  msgstr "Pilih warna skema untuk tampilan CF7 Skins"
147
 
148
+ #: ../includes/settings.php:169
149
  msgid "Display Log"
150
  msgstr "Tampilan Log"
151
 
152
+ #: ../includes/settings.php:172
153
  msgid "Displays plugin log tab."
154
  msgstr "Tampilkan papan log plugin"
155
 
156
+ #: ../includes/settings.php:176
157
  msgid "Delete Settings"
158
  msgstr "Hapus Pengaturan"
159
 
160
+ #: ../includes/settings.php:179
161
  msgid "Remove all plugin data on plugin deletion."
162
  msgstr "Hapus semua data saat penghapusan plugin."
163
 
164
+ #: ../includes/settings.php:312
165
  msgid "active"
166
  msgstr "aktif"
167
 
168
+ #: ../includes/settings.php:313
169
  msgid "Deactivate License"
170
  msgstr "Non-aktifkan Lisensi"
171
 
172
+ #: ../includes/settings.php:316
173
  msgid "invalid"
174
  msgstr "absah"
175
 
176
+ #: ../includes/settings.php:318
177
  msgid "Activate License"
178
  msgstr "Aktifkan Lisensi"
179
 
180
+ #: ../includes/settings.php:359
181
  msgid "Default"
182
  msgstr "Standar"
183
 
184
+ #: ../includes/settings.php:365
185
  msgid "Wheat"
186
  msgstr "Gandum"
187
 
188
+ #: ../includes/settings.php:371
189
  msgid "Ocean"
190
  msgstr "Lautan"
191
 
192
+ #: ../includes/style.php:139 ../includes/style.php:220
193
+ #: ../includes/style.php:309
194
  msgid "Colors"
195
  msgstr "Warna"
196
 
197
+ #: ../includes/style.php:140
198
  msgid "Black"
199
  msgstr "Hitam"
200
 
201
+ #: ../includes/style.php:141
202
  msgid "Brown"
203
  msgstr "Coklat"
204
 
205
+ #: ../includes/style.php:142
206
  msgid "Gray"
207
  msgstr "Abu-abu"
208
 
209
+ #: ../includes/style.php:143
210
  msgid "Green"
211
  msgstr "Hijau"
212
 
213
+ #: ../includes/style.php:144
214
  msgid "Orange"
215
  msgstr "Oranye"
216
 
217
+ #: ../includes/style.php:145
218
  msgid "Pink"
219
  msgstr "Merah Jambu"
220
 
221
+ #: ../includes/style.php:146
222
  msgid "Purple"
223
  msgstr "Ungu"
224
 
225
+ #: ../includes/style.php:147
226
  msgid "Red"
227
  msgstr "Merah"
228
 
229
+ #: ../includes/style.php:148
230
  msgid "Silver"
231
  msgstr "Perak"
232
 
233
+ #: ../includes/style.php:149
234
  msgid "Tan"
235
  msgstr "Coklat"
236
 
237
+ #: ../includes/style.php:150
238
  msgid "White"
239
  msgstr "Putih"
240
 
241
+ #: ../includes/style.php:151
242
  msgid "Yellow"
243
  msgstr "Kuning"
244
 
245
+ #: ../includes/style.php:152
246
  msgid "Dark"
247
  msgstr "Hitam"
248
 
249
+ #: ../includes/style.php:153
250
  msgid "Light"
251
  msgstr "Cerah"
252
 
253
+ #: ../includes/style.php:156
254
  msgid "Layout"
255
  msgstr "Tatanan Tertentu"
256
 
257
+ #: ../includes/style.php:157 ../includes/template.php:175
258
  msgid "Fixed Layout"
259
  msgstr "Tatanan Tertentu"
260
 
261
+ #: ../includes/style.php:158 ../includes/template.php:176
262
  msgid "Fluid Layout"
263
  msgstr "Tatanan Fluid"
264
 
265
+ #: ../includes/style.php:159 ../includes/template.php:177
266
  msgid "Responsive Layout"
267
  msgstr "Tatanan Fleksibel"
268
 
269
+ #: ../includes/style.php:160 ../includes/template.php:178
270
  msgid "One Column"
271
  msgstr "Satu Kolom"
272
 
273
+ #: ../includes/style.php:161 ../includes/template.php:179
274
  msgid "One or Two Column"
275
  msgstr "Satu atau Dua Kolom"
276
 
277
+ #: ../includes/style.php:162 ../includes/template.php:180
278
  msgid "One, Two or Three Column"
279
  msgstr "Satu, Dua atau Tiga Kolom"
280
 
281
+ #: ../includes/style.php:165
282
  msgid "Features"
283
  msgstr "Difiturkan"
284
 
285
+ #: ../includes/style.php:166 ../includes/template.php:184
286
  msgid "Fieldsets"
287
  msgstr "Fieldset"
288
 
289
+ #: ../includes/style.php:167 ../includes/template.php:185
290
  msgid "Background"
291
  msgstr "Warna latar"
292
 
293
+ #: ../includes/style.php:168 ../includes/template.php:186
294
  msgid "Gradients"
295
  msgstr "Gradien"
296
 
297
+ #: ../includes/style.php:171
298
+ #: ../skins/templates/default/default-cf7-form.php:24
299
  msgid "Subject"
300
  msgstr "Subjek"
301
 
302
+ #: ../includes/style.php:172 ../includes/template.php:190
303
  msgid "Business"
304
  msgstr "Bisnis"
305
 
306
+ #: ../includes/style.php:173 ../includes/template.php:191
307
  #: ../skins/templates/event/event.php:18
308
  msgid "Event"
309
  msgstr "Peristiwa"
310
 
311
+ #: ../includes/style.php:174 ../includes/template.php:192
312
  msgid "Holiday"
313
  msgstr "Liburan"
314
 
315
+ #: ../includes/style.php:175 ../includes/template.php:193
316
  msgid "Individual"
317
  msgstr "Pribadi"
318
 
319
+ #: ../includes/style.php:176 ../includes/template.php:194
320
  msgid "Seasonal"
321
  msgstr "Musiman"
322
 
323
+ #: ../includes/style.php:197 ../includes/style.php:285
324
  msgid "All available Styles"
325
  msgstr "Semua Gaya yang tersedia"
326
 
327
+ #: ../includes/style.php:197 ../includes/style.php:285
328
+ #: ../includes/template.php:214 ../includes/template.php:298
329
  msgid "All"
330
  msgstr "Semuanya"
331
 
332
+ #: ../includes/style.php:198 ../includes/style.php:286
333
  msgid "Selected by the CF7 Skins team"
334
  msgstr "Dipilih oleh team CF7 Skins"
335
 
336
+ #: ../includes/style.php:198 ../includes/style.php:286
337
+ #: ../includes/template.php:215 ../includes/template.php:299
338
  msgid "Featured"
339
  msgstr "Difiturkan"
340
 
341
+ #: ../includes/style.php:199 ../includes/style.php:287
342
+ #: ../includes/template.php:216 ../includes/template.php:300
343
  msgid "Commonly used"
344
  msgstr "Yang sering digunakan"
345
 
346
+ #: ../includes/style.php:199 ../includes/style.php:287
347
+ #: ../includes/template.php:216 ../includes/template.php:300
348
  msgid "Popular"
349
  msgstr "Populer"
350
 
351
+ #: ../includes/style.php:200 ../includes/style.php:288
352
+ #: ../includes/template.php:217 ../includes/template.php:301
353
  msgid "Recently added"
354
  msgstr "Terbaru ditambahkan"
355
 
356
+ #: ../includes/style.php:200 ../includes/style.php:288
357
+ #: ../includes/template.php:217 ../includes/template.php:301
358
  msgid "Latest"
359
  msgstr "Terbaru"
360
 
361
+ #: ../includes/style.php:206 ../includes/style.php:292
362
+ #: ../includes/template.php:223 ../includes/template.php:305
363
  msgid "Narrow your choices based on your specific requirements"
364
  msgstr "Batasi pilihan anda berdasarkan persayaratan spesifik"
365
 
366
+ #: ../includes/style.php:211 ../includes/style.php:302
367
  msgid ""
368
  "Check all the boxes that meet your specific requirements and then click "
369
  "apply filters."
371
  "Centang semua kotak yang sesuai dengan persayaratan spesifik anda and tekan "
372
  "gunakan filter."
373
 
374
+ #: ../includes/style.php:211 ../includes/style.php:302
375
+ #: ../includes/template.php:228 ../includes/template.php:315
376
  msgid "Apply Filters"
377
  msgstr "Gunakan Filter"
378
 
379
+ #: ../includes/style.php:212 ../includes/style.php:303
380
+ #: ../includes/template.php:229 ../includes/template.php:316
381
  msgid "Clear"
382
  msgstr "Bersihkan"
383
 
384
+ #: ../includes/style.php:239 ../includes/style.php:327
385
+ #: ../includes/template.php:252 ../includes/template.php:336
386
  msgid "Filtering by:"
387
  msgstr "Memfilter dengan:"
388
 
389
+ #: ../includes/style.php:241 ../includes/style.php:329
390
+ #: ../includes/template.php:254 ../includes/template.php:338
391
  msgid "Edit"
392
  msgstr "Ubah"
393
 
394
+ #: ../includes/style.php:246 ../includes/style.php:334
395
+ #: ../includes/template.php:259 ../includes/template.php:342
396
  msgid ""
397
  "Sort by Name, Date and License (free or pro) – use arrow to reverse sort "
398
  "order"
400
  "Urut berdasarkan Nama, Tanggal dan Lisensi (gratis atau pro) – gunakan panah "
401
  "untuk membalikkan urutan"
402
 
403
+ #: ../includes/style.php:246 ../includes/style.php:334
404
+ #: ../includes/template.php:259 ../includes/template.php:342
405
  msgid "Sort by"
406
  msgstr "Urut dengan"
407
 
408
+ #: ../includes/style.php:248 ../includes/style.php:336
409
+ #: ../includes/template.php:261 ../includes/template.php:344
410
  #: ../skins/templates/event/event.php:20
411
  #: ../skins/templates/fieldset-basic/fieldset-basic.php:20
412
  #: ../skins/templates/fieldset-in-fieldset/fieldset-in-fieldset.php:20
415
  msgid "Name"
416
  msgstr "Nama"
417
 
418
+ #: ../includes/style.php:249 ../includes/style.php:337
419
+ #: ../includes/template.php:262 ../includes/template.php:345
420
  msgid "Date"
421
  msgstr "Tanggal"
422
 
423
+ #: ../includes/style.php:250 ../includes/style.php:338
424
+ #: ../includes/template.php:263 ../includes/template.php:346
425
  msgid "License"
426
  msgstr "Lisensi"
427
 
428
+ #: ../includes/style.php:254 ../includes/style.php:296
429
  msgid "Search Styles"
430
  msgstr "Cari Gaya"
431
 
432
+ #: ../includes/style.php:255 ../includes/style.php:297
433
  msgid "Search styles..."
434
  msgstr "Cari gaya..."
435
 
436
+ #: ../includes/style.php:391 ../includes/style.php:423
437
  msgid ""
438
  "Select to apply the Style to your form - is applied to your form once you "
439
  "Save."
441
  "Pilih untuk menerapkan Gaya tersebut ke form anda - diterapkan ke form anda "
442
  "setelah disimpan."
443
 
444
+ #: ../includes/style.php:392
445
  msgid ""
446
  "Show detailed information about this Style - overview of the appearance and "
447
  "layout with description and usage details."
449
  "Menampilkan informasi detail mengenai Gaya ini - peninjauan tampilan dan "
450
  "susunan dengan detail gambaran dan penggunaan."
451
 
452
+ #: ../includes/style.php:392 ../includes/template.php:402
 
453
  #: ../skins/templates/suggestion/suggestion.php:24
454
  msgid "Details"
455
  msgstr "Detail"
456
 
457
+ #: ../includes/style.php:422
458
  msgid ""
459
+ "Use Expanded View to view Styles features - shows all form fields available "
460
  "in Contact Form 7."
461
  msgstr ""
462
  "Gunakan Tampilan Luas untuk melihat fitur gaya - menampilkan semua bagian "
463
  "form yang tersedia di Contact Form 7."
464
 
465
+ #: ../includes/style.php:424
466
  msgid "Return to Style Gallery/Grid view."
467
  msgstr "Kembalik ke Galeri Gaya/tampilan Grid"
468
 
469
+ #: ../includes/style.php:424 ../includes/style.php:441
470
+ #: ../includes/template.php:433 ../includes/template.php:449
471
  msgid "Close"
472
  msgstr "Tutup"
473
 
474
+ #: ../includes/style.php:429 ../includes/style.php:449
475
+ #: ../includes/template.php:438 ../includes/template.php:457
 
 
 
 
476
  msgid "Description"
477
  msgstr "Deskripsi"
478
 
479
+ #: ../includes/style.php:432 ../includes/style.php:452
480
+ #: ../includes/template.php:441 ../includes/template.php:460
481
  msgid "Instructions"
482
  msgstr "Instruksi"
483
 
484
+ #: ../includes/style.php:439 ../includes/template.php:447
485
  msgid "Return to Details View"
486
  msgstr "Kembali ke Tampilan Detail"
487
 
488
+ #: ../includes/style.php:439 ../includes/template.php:447
489
  msgid "Details View"
490
  msgstr "Tampilan Detail"
491
 
492
+ #: ../includes/style.php:440
493
  msgid ""
494
  "Select to apply the Style to your form - is applied to your form once you "
495
  "Save"
497
  "Pilih untuk menarapkan Gaya ke form anda - diterapkan pada saat anda "
498
  "menyimpan."
499
 
500
+ #: ../includes/style.php:441
501
  msgid "Return to Style Gallery/Grid View"
502
  msgstr "Kembalik ke Galeri Gaya/Tampilan Kotak"
503
 
504
+ #: ../includes/tab.php:30 ../includes/tab.php:226
505
  msgid "Template"
506
  msgstr "Templat"
507
 
508
+ #: ../includes/tab.php:31 ../includes/tab.php:234
509
  msgid "Style"
510
  msgstr "Gaya"
511
 
512
+ #: ../includes/tab.php:126
513
  msgid "No templates found. Try a different search."
514
  msgstr "Templat tidak ditemukan. Coba pencarian lain."
515
 
516
+ #: ../includes/tab.php:202
517
  msgid "No styles found. Try a different search."
518
  msgstr "Gaya tidak ditemukan. Coba pencarian lain"
519
 
520
+ #: ../includes/tab.php:227
521
  msgid ""
522
  "Each Template acts as an easy to follow guide, which can be adapted to your "
523
+ "requirements"
524
  msgstr ""
525
  "Setiap templat bertindak sebagai panduan yang mudah diikuti, dan dapat "
526
  "diadaptasikan sesua dengan kebutuhan anda < Templat >"
527
 
528
+ #: ../includes/tab.php:228
529
  msgid ""
530
  "Choose a Template for your form – then you can add, copy or remove fields to "
531
  "match your requirements."
533
  "Pilih sebuah templat untuk form anda – kemudian anda bisa manambahkan, "
534
  "menyalin atau menghapus bagian form sesuai dengan kebutuhan anda."
535
 
536
+ #: ../includes/tab.php:235
537
  msgid ""
538
  "Each Style covers the full range of standard form elements available within "
539
+ "Contact Form 7"
540
  msgstr ""
541
  "Setiap Gaya melingkupi seluruh rentang elemen form standar yang tersedia "
542
  "pada Contact Form 7 <Gaya>"
543
 
544
+ #: ../includes/tab.php:236
545
  msgid ""
546
  "You can change the Style applied to your form by simply selecting a "
547
  "different Style"
548
  msgstr "Anda bisa mengubah Gaya yang diterapkan dengan memilih Gaya yang lain."
549
 
550
+ #: ../includes/tab.php:243
551
  msgid "!"
552
  msgstr "!"
553
 
554
+ #: ../includes/tab.php:244 ../includes/tab.php:311
555
  msgid "?"
556
  msgstr "?"
557
 
558
+ #: ../includes/tab.php:283
559
  msgid "Documentation"
560
  msgstr "Dokumentasi"
561
 
562
+ #: ../includes/tab.php:284
563
  msgid "FAQ"
564
  msgstr "Tanya Jawab"
565
 
566
+ #: ../includes/tab.php:285
567
  msgid "Tutorials"
568
  msgstr "Tutorial"
569
 
570
+ #: ../includes/tab.php:286
571
  msgid "Knowledge Base"
572
  msgstr "Pengatahuan Dasar"
573
 
574
+ #: ../includes/tab.php:298
575
  msgid "Support"
576
  msgstr "Bantuan"
577
 
578
+ #: ../includes/tab.php:299
579
  msgid "Blog"
580
  msgstr "Blog"
581
 
582
+ #: ../includes/tab.php:300
583
  msgid "Pro Version"
584
  msgstr "Versi Pro"
585
 
586
+ #: ../includes/template.php:214 ../includes/template.php:298
587
  msgid "All available Templates"
588
  msgstr "Semua templat yang tersedia"
589
 
590
+ #: ../includes/template.php:215 ../includes/template.php:299
591
  msgid "Selected by CF7 Skins Team"
592
  msgstr "Dipilih oleh team CF7 Skins"
593
 
594
+ #: ../includes/template.php:223 ../includes/template.php:305
595
  msgid "Feature Filter"
596
  msgstr "Fitur Filter"
597
 
598
+ #: ../includes/template.php:267 ../includes/template.php:309
599
  msgid "Search Templates"
600
  msgstr "Cari Templat"
601
 
602
+ #: ../includes/template.php:268 ../includes/template.php:310
603
  msgid "Search templates..."
604
  msgstr "Cari templat"
605
 
606
+ #: ../includes/template.php:401
607
  msgid ""
608
  "Select to apply the Template to your form - appears in the form editing "
609
  "area, where you can edit your requirements."
611
  "Pilih untuk menerapkan Templat ke form anda - ditampilkan pada bagian "
612
  "penyuntingan form, dimana anda dapat menyunting sesuai kebutuhan."
613
 
614
+ #: ../includes/template.php:402
615
  msgid ""
616
  "Show detailed information about this Template, with layout, description and "
617
  "usage details."
619
  "Menampilkan informasi detail mengenai Templat ini, dengan susunan, "
620
  "penjelasan dan detail penggunaan."
621
 
622
+ #: ../includes/template.php:431
623
  msgid ""
624
+ "Use Expanded View to view Template features - shows layout, description & "
625
  "usage details."
626
  msgstr ""
627
  "Gunakan Tampilan Luas untuk melihat fitur templat - menampilkan susunan, "
628
  "penjelasan dan detail penggunaan."
629
 
630
+ #: ../includes/template.php:432
631
  msgid ""
632
  "Select to apply the Template to your form - appears in the Form Editing "
633
  "area, where you can edit to your requirements."
635
  "Pilih untuk menerapkan Templat ke form anda - tampil di bagaian penyuntingan "
636
  "form, dimana anda bisa menyuntuk sesuai kebutuhan."
637
 
638
+ #: ../includes/template.php:433
639
  msgid "Return to Template Gallery/Grid view."
640
  msgstr "Kembali ke Galeri Templat/Tampilan Grid"
641
 
642
+ #: ../includes/template.php:448
643
  msgid ""
644
  "Select to apply the Template to your form - appears in the Form editing "
645
  "area, where you can edit to your requirements."
647
  "Pilih untuk menerapkan Templat ke form anda - tampil di bagaian penyuntingan "
648
  "form, dimana anda bisa menyuntuk sesuai kebutuhan."
649
 
650
+ #: ../includes/template.php:449
651
  msgid "Return to Template Gallery/ Grid View"
652
  msgstr "Kembali ke Galeri Templat/Tampilan Grid"
653
 
656
  msgstr "Form Kontak"
657
 
658
  #: ../skins/templates/contact/contact.php:20
659
+ #: ../skins/templates/default/default-cf7-form.php:18
660
  msgid "Your Name (required)"
661
  msgstr "Nama Anda (dibutuhkan)"
662
 
665
  msgstr "Alamat Surel (dibutuhkan)"
666
 
667
  #: ../skins/templates/contact/contact.php:22
668
+ #: ../skins/templates/default/default-cf7-form.php:27
669
  msgid "Your Message"
670
  msgstr "Pesan Anda"
671
 
688
  msgid "Required"
689
  msgstr "Dibutuhkan"
690
 
691
+ #: ../skins/templates/default/default-cf7-form.php:21
692
  msgid "Your Email (required)"
693
  msgstr "Email Anda (dibutuhkan)"
694
 
695
+ #: ../skins/templates/default/default-cf7-form.php:30
696
  msgid "Send"
697
  msgstr "Kirim"
698
 
1076
  msgid "Much Worse"
1077
  msgstr "Lebih Buruk"
1078
 
1079
+ #~ msgid "Enter your CF7 Skins license key and save before activating."
1080
+ #~ msgstr ""
1081
+ #~ "Masukkan kode lisensi CF7 Skins anda dan simpan sebelum melakukan "
1082
+ #~ "aktivasi."
1083
+
1084
+ #~ msgid ""
1085
+ #~ "Please activate your <a href=\"%1$s\" target=\"_blank\">License Key</a> "
1086
+ #~ "to access Contact Form 7 Skins plus automatic upgrades and premium email "
1087
+ #~ "support. Need a license key? <a href=\"%1$s\" target=\"_blank\">Purchase "
1088
+ #~ "one now</a>."
1089
+ #~ msgstr ""
1090
+ #~ "Mohon aktifkan <a href=\"%1$s\" target=\"_blank\">Kode Lisensi</a> anda "
1091
+ #~ "untuk mengakses Contact Form 7 Skins dan pembaruan otomatis serta layanan "
1092
+ #~ "bantuan surel. Butuh kode lisensi? <a href=\"%1$s\" target=\"_blank"
1093
+ #~ "\">Beli satu sekarang</a>."
1094
+
1095
+ #~ msgid "Version: "
1096
+ #~ msgstr "Versi:"
1097
+
1098
  #~ msgid "Custom Styles & Scripts"
1099
  #~ msgstr "Tambahan Gaya & Skrip"
1100
 
languages/cf7skins.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Contact Form 7 Skins 0.0\n"
6
  "Report-Msgid-Bugs-To: \n"
7
- "POT-Creation-Date: 2015-02-05 11:17+0700\n"
8
- "PO-Revision-Date: 2015-02-05 11:17+0700\n"
9
  "Last-Translator: Selz <engineer@selz.com>\n"
10
  "Language-Team: Neil Murray <nmurray@exemail.com.au>\n"
11
  "Language: en_US\n"
@@ -18,40 +18,44 @@ msgstr ""
18
  "X-Generator: Poedit 1.5.7\n"
19
  "X-Poedit-SearchPath-0: ..\n"
20
 
21
- #: ../index.php:208
22
  #, php-format
23
  msgid "<a href=\"%s\">Contact Form 7</a> must be installed to use this plugin."
24
  msgstr ""
25
 
26
- #: ../includes/admin.php:94
27
  msgid "Loading template..."
28
  msgstr ""
29
 
30
- #: ../includes/admin.php:95
31
  msgid "Empty filter, please select a filter."
32
  msgstr ""
33
 
34
- #: ../includes/admin.php:96 ../includes/style.php:376
35
- #: ../includes/style.php:413 ../includes/template.php:383
36
- #: ../includes/template.php:421
37
  msgid "Select"
38
  msgstr ""
39
 
40
- #: ../includes/admin.php:97 ../includes/style.php:376
41
- #: ../includes/style.php:413 ../includes/template.php:383
42
- #: ../includes/template.php:421
43
  msgid "Selected"
44
  msgstr ""
45
 
46
- #: ../includes/admin.php:98 ../includes/style.php:423
47
- #: ../includes/template.php:430
48
  msgid "Expanded View"
49
  msgstr ""
50
 
51
- #: ../includes/admin.php:114
52
  msgid "Skins"
53
  msgstr ""
54
 
 
 
 
 
55
  #: ../includes/EDD_SL_Plugin_Updater.php:177
56
  #, php-format
57
  msgid ""
@@ -75,44 +79,39 @@ msgstr ""
75
  msgid "Error"
76
  msgstr ""
77
 
78
- #: ../includes/license.php:72
79
  msgid "Licenses"
80
  msgstr ""
81
 
82
- #: ../includes/license.php:92
83
- msgid "Skins License Key"
84
  msgstr ""
85
 
86
- #: ../includes/license.php:95
87
- msgid "Enter your CF7 Skins license key and save before activating."
88
  msgstr ""
89
 
90
- #: ../includes/license.php:257
91
- #, php-format
92
- msgid ""
93
- "Please activate your <a href=\"%1$s\" target=\"_blank\">License Key</a> to "
94
- "access Contact Form 7 Skins plus automatic upgrades and premium email "
95
- "support. Need a license key? <a href=\"%1$s\" target=\"_blank\">Purchase one "
96
- "now</a>."
97
  msgstr ""
98
 
99
- #: ../includes/logs.php:39
100
  msgid "Logs"
101
  msgstr ""
102
 
103
- #: ../includes/logs.php:53
104
  msgid "Get Version"
105
  msgstr ""
106
 
107
- #: ../includes/logs.php:59
108
  msgid "Activation"
109
  msgstr ""
110
 
111
- #: ../includes/logs.php:65
112
  msgid "Deactivation"
113
  msgstr ""
114
 
115
- #: ../includes/logs.php:96 ../includes/logs.php:123 ../includes/logs.php:171
116
  msgid "Not available"
117
  msgstr ""
118
 
@@ -124,280 +123,280 @@ msgstr ""
124
  msgid "Advanced"
125
  msgstr ""
126
 
127
- #: ../includes/settings.php:82
128
  msgid "Contact Form 7 Skins Settings"
129
  msgstr ""
130
 
131
- #: ../includes/settings.php:99
132
  msgid "Save Changes"
133
  msgstr ""
134
 
135
- #: ../includes/settings.php:136
136
  msgid "Color Scheme"
137
  msgstr ""
138
 
139
- #: ../includes/settings.php:139
140
  msgid "Select color scheme for CF7 Skins interface."
141
  msgstr ""
142
 
143
- #: ../includes/settings.php:149
144
  msgid "Display Log"
145
  msgstr ""
146
 
147
- #: ../includes/settings.php:152
148
  msgid "Displays plugin log tab."
149
  msgstr ""
150
 
151
- #: ../includes/settings.php:156
152
  msgid "Delete Settings"
153
  msgstr ""
154
 
155
- #: ../includes/settings.php:159
156
  msgid "Remove all plugin data on plugin deletion."
157
  msgstr ""
158
 
159
- #: ../includes/settings.php:284
160
  msgid "active"
161
  msgstr ""
162
 
163
- #: ../includes/settings.php:285
164
  msgid "Deactivate License"
165
  msgstr ""
166
 
167
- #: ../includes/settings.php:288
168
  msgid "invalid"
169
  msgstr ""
170
 
171
- #: ../includes/settings.php:290
172
  msgid "Activate License"
173
  msgstr ""
174
 
175
- #: ../includes/settings.php:331
176
  msgid "Default"
177
  msgstr ""
178
 
179
- #: ../includes/settings.php:337
180
  msgid "Wheat"
181
  msgstr ""
182
 
183
- #: ../includes/settings.php:343
184
  msgid "Ocean"
185
  msgstr ""
186
 
187
- #: ../includes/style.php:140 ../includes/style.php:221
188
- #: ../includes/style.php:310
189
  msgid "Colors"
190
  msgstr ""
191
 
192
- #: ../includes/style.php:141
193
  msgid "Black"
194
  msgstr ""
195
 
196
- #: ../includes/style.php:142
197
  msgid "Brown"
198
  msgstr ""
199
 
200
- #: ../includes/style.php:143
201
  msgid "Gray"
202
  msgstr ""
203
 
204
- #: ../includes/style.php:144
205
  msgid "Green"
206
  msgstr ""
207
 
208
- #: ../includes/style.php:145
209
  msgid "Orange"
210
  msgstr ""
211
 
212
- #: ../includes/style.php:146
213
  msgid "Pink"
214
  msgstr ""
215
 
216
- #: ../includes/style.php:147
217
  msgid "Purple"
218
  msgstr ""
219
 
220
- #: ../includes/style.php:148
221
  msgid "Red"
222
  msgstr ""
223
 
224
- #: ../includes/style.php:149
225
  msgid "Silver"
226
  msgstr ""
227
 
228
- #: ../includes/style.php:150
229
  msgid "Tan"
230
  msgstr ""
231
 
232
- #: ../includes/style.php:151
233
  msgid "White"
234
  msgstr ""
235
 
236
- #: ../includes/style.php:152
237
  msgid "Yellow"
238
  msgstr ""
239
 
240
- #: ../includes/style.php:153
241
  msgid "Dark"
242
  msgstr ""
243
 
244
- #: ../includes/style.php:154
245
  msgid "Light"
246
  msgstr ""
247
 
248
- #: ../includes/style.php:157
249
  msgid "Layout"
250
  msgstr ""
251
 
252
- #: ../includes/style.php:158 ../includes/template.php:174
253
  msgid "Fixed Layout"
254
  msgstr ""
255
 
256
- #: ../includes/style.php:159 ../includes/template.php:175
257
  msgid "Fluid Layout"
258
  msgstr ""
259
 
260
- #: ../includes/style.php:160 ../includes/template.php:176
261
  msgid "Responsive Layout"
262
  msgstr ""
263
 
264
- #: ../includes/style.php:161 ../includes/template.php:177
265
  msgid "One Column"
266
  msgstr ""
267
 
268
- #: ../includes/style.php:162 ../includes/template.php:178
269
  msgid "One or Two Column"
270
  msgstr ""
271
 
272
- #: ../includes/style.php:163 ../includes/template.php:179
273
  msgid "One, Two or Three Column"
274
  msgstr ""
275
 
276
- #: ../includes/style.php:166
277
  msgid "Features"
278
  msgstr ""
279
 
280
- #: ../includes/style.php:167 ../includes/template.php:183
281
  msgid "Fieldsets"
282
  msgstr ""
283
 
284
- #: ../includes/style.php:168 ../includes/template.php:184
285
  msgid "Background"
286
  msgstr ""
287
 
288
- #: ../includes/style.php:169 ../includes/template.php:185
289
  msgid "Gradients"
290
  msgstr ""
291
 
292
- #: ../includes/style.php:172
293
- #: ../skins/templates/default/default-cf7-form.php:23
294
  msgid "Subject"
295
  msgstr ""
296
 
297
- #: ../includes/style.php:173 ../includes/template.php:189
298
  msgid "Business"
299
  msgstr ""
300
 
301
- #: ../includes/style.php:174 ../includes/template.php:190
302
  #: ../skins/templates/event/event.php:18
303
  msgid "Event"
304
  msgstr ""
305
 
306
- #: ../includes/style.php:175 ../includes/template.php:191
307
  msgid "Holiday"
308
  msgstr ""
309
 
310
- #: ../includes/style.php:176 ../includes/template.php:192
311
  msgid "Individual"
312
  msgstr ""
313
 
314
- #: ../includes/style.php:177 ../includes/template.php:193
315
  msgid "Seasonal"
316
  msgstr ""
317
 
318
- #: ../includes/style.php:198 ../includes/style.php:286
319
  msgid "All available Styles"
320
  msgstr ""
321
 
322
- #: ../includes/style.php:198 ../includes/style.php:286
323
- #: ../includes/template.php:213 ../includes/template.php:297
324
  msgid "All"
325
  msgstr ""
326
 
327
- #: ../includes/style.php:199 ../includes/style.php:287
328
  msgid "Selected by the CF7 Skins team"
329
  msgstr ""
330
 
331
- #: ../includes/style.php:199 ../includes/style.php:287
332
- #: ../includes/template.php:214 ../includes/template.php:298
333
  msgid "Featured"
334
  msgstr ""
335
 
336
- #: ../includes/style.php:200 ../includes/style.php:288
337
- #: ../includes/template.php:215 ../includes/template.php:299
338
  msgid "Commonly used"
339
  msgstr ""
340
 
341
- #: ../includes/style.php:200 ../includes/style.php:288
342
- #: ../includes/template.php:215 ../includes/template.php:299
343
  msgid "Popular"
344
  msgstr ""
345
 
346
- #: ../includes/style.php:201 ../includes/style.php:289
347
- #: ../includes/template.php:216 ../includes/template.php:300
348
  msgid "Recently added"
349
  msgstr ""
350
 
351
- #: ../includes/style.php:201 ../includes/style.php:289
352
- #: ../includes/template.php:216 ../includes/template.php:300
353
  msgid "Latest"
354
  msgstr ""
355
 
356
- #: ../includes/style.php:207 ../includes/style.php:293
357
- #: ../includes/template.php:222 ../includes/template.php:304
358
  msgid "Narrow your choices based on your specific requirements"
359
  msgstr ""
360
 
361
- #: ../includes/style.php:212 ../includes/style.php:303
362
  msgid ""
363
  "Check all the boxes that meet your specific requirements and then click "
364
  "apply filters."
365
  msgstr ""
366
 
367
- #: ../includes/style.php:212 ../includes/style.php:303
368
- #: ../includes/template.php:227 ../includes/template.php:314
369
  msgid "Apply Filters"
370
  msgstr ""
371
 
372
- #: ../includes/style.php:213 ../includes/style.php:304
373
- #: ../includes/template.php:228 ../includes/template.php:315
374
  msgid "Clear"
375
  msgstr ""
376
 
377
- #: ../includes/style.php:240 ../includes/style.php:328
378
- #: ../includes/template.php:251 ../includes/template.php:335
379
  msgid "Filtering by:"
380
  msgstr ""
381
 
382
- #: ../includes/style.php:242 ../includes/style.php:330
383
- #: ../includes/template.php:253 ../includes/template.php:337
384
  msgid "Edit"
385
  msgstr ""
386
 
387
- #: ../includes/style.php:247 ../includes/style.php:335
388
- #: ../includes/template.php:258 ../includes/template.php:341
389
  msgid ""
390
  "Sort by Name, Date and License (free or pro) – use arrow to reverse sort "
391
  "order"
392
  msgstr ""
393
 
394
- #: ../includes/style.php:247 ../includes/style.php:335
395
- #: ../includes/template.php:258 ../includes/template.php:341
396
  msgid "Sort by"
397
  msgstr ""
398
 
399
- #: ../includes/style.php:249 ../includes/style.php:337
400
- #: ../includes/template.php:260 ../includes/template.php:343
401
  #: ../skins/templates/event/event.php:20
402
  #: ../skins/templates/fieldset-basic/fieldset-basic.php:20
403
  #: ../skins/templates/fieldset-in-fieldset/fieldset-in-fieldset.php:20
@@ -406,220 +405,215 @@ msgstr ""
406
  msgid "Name"
407
  msgstr ""
408
 
409
- #: ../includes/style.php:250 ../includes/style.php:338
410
- #: ../includes/template.php:261 ../includes/template.php:344
411
  msgid "Date"
412
  msgstr ""
413
 
414
- #: ../includes/style.php:251 ../includes/style.php:339
415
- #: ../includes/template.php:262 ../includes/template.php:345
416
  msgid "License"
417
  msgstr ""
418
 
419
- #: ../includes/style.php:255 ../includes/style.php:297
420
  msgid "Search Styles"
421
  msgstr ""
422
 
423
- #: ../includes/style.php:256 ../includes/style.php:298
424
  msgid "Search styles..."
425
  msgstr ""
426
 
427
- #: ../includes/style.php:392 ../includes/style.php:424
428
  msgid ""
429
  "Select to apply the Style to your form - is applied to your form once you "
430
  "Save."
431
  msgstr ""
432
 
433
- #: ../includes/style.php:393
434
  msgid ""
435
  "Show detailed information about this Style - overview of the appearance and "
436
  "layout with description and usage details."
437
  msgstr ""
438
 
439
- #: ../includes/style.php:393 ../includes/style.php:427
440
- #: ../includes/template.php:401 ../includes/template.php:434
441
  #: ../skins/templates/suggestion/suggestion.php:24
442
  msgid "Details"
443
  msgstr ""
444
 
445
- #: ../includes/style.php:423
446
  msgid ""
447
- "Use Expanded View to view styles features - shows all form fields available "
448
  "in Contact Form 7."
449
  msgstr ""
450
 
451
- #: ../includes/style.php:425
452
  msgid "Return to Style Gallery/Grid view."
453
  msgstr ""
454
 
455
- #: ../includes/style.php:425 ../includes/style.php:445
456
- #: ../includes/template.php:432 ../includes/template.php:451
457
  msgid "Close"
458
  msgstr ""
459
 
460
- #: ../includes/style.php:430 ../includes/template.php:437
461
- msgid "Version: "
462
- msgstr ""
463
-
464
- #: ../includes/style.php:432 ../includes/style.php:450
465
- #: ../includes/template.php:439 ../includes/template.php:456
466
  msgid "Description"
467
  msgstr ""
468
 
469
- #: ../includes/style.php:435 ../includes/style.php:453
470
- #: ../includes/template.php:442 ../includes/template.php:459
471
  msgid "Instructions"
472
  msgstr ""
473
 
474
- #: ../includes/style.php:443 ../includes/template.php:449
475
  msgid "Return to Details View"
476
  msgstr ""
477
 
478
- #: ../includes/style.php:443 ../includes/template.php:449
479
  msgid "Details View"
480
  msgstr ""
481
 
482
- #: ../includes/style.php:444
483
  msgid ""
484
  "Select to apply the Style to your form - is applied to your form once you "
485
  "Save"
486
  msgstr ""
487
 
488
- #: ../includes/style.php:445
489
  msgid "Return to Style Gallery/Grid View"
490
  msgstr ""
491
 
492
- #: ../includes/tab.php:29 ../includes/tab.php:225
493
  msgid "Template"
494
  msgstr ""
495
 
496
- #: ../includes/tab.php:30 ../includes/tab.php:233
497
  msgid "Style"
498
  msgstr ""
499
 
500
- #: ../includes/tab.php:125
501
  msgid "No templates found. Try a different search."
502
  msgstr ""
503
 
504
- #: ../includes/tab.php:201
505
  msgid "No styles found. Try a different search."
506
  msgstr ""
507
 
508
- #: ../includes/tab.php:226
509
  msgid ""
510
  "Each Template acts as an easy to follow guide, which can be adapted to your "
511
- "requirements < Templates >"
512
  msgstr ""
513
 
514
- #: ../includes/tab.php:227
515
  msgid ""
516
  "Choose a Template for your form – then you can add, copy or remove fields to "
517
  "match your requirements."
518
  msgstr ""
519
 
520
- #: ../includes/tab.php:234
521
  msgid ""
522
  "Each Style covers the full range of standard form elements available within "
523
- "Contact Form 7 <Styles>"
524
  msgstr ""
525
 
526
- #: ../includes/tab.php:235
527
  msgid ""
528
  "You can change the Style applied to your form by simply selecting a "
529
  "different Style"
530
  msgstr ""
531
 
532
- #: ../includes/tab.php:242
533
  msgid "!"
534
  msgstr ""
535
 
536
- #: ../includes/tab.php:243 ../includes/tab.php:308
537
  msgid "?"
538
  msgstr ""
539
 
540
- #: ../includes/tab.php:281
541
  msgid "Documentation"
542
  msgstr ""
543
 
544
- #: ../includes/tab.php:282
545
  msgid "FAQ"
546
  msgstr ""
547
 
548
- #: ../includes/tab.php:283
549
  msgid "Tutorials"
550
  msgstr ""
551
 
552
- #: ../includes/tab.php:284
553
  msgid "Knowledge Base"
554
  msgstr ""
555
 
556
- #: ../includes/tab.php:295
557
  msgid "Support"
558
  msgstr ""
559
 
560
- #: ../includes/tab.php:296
561
  msgid "Blog"
562
  msgstr ""
563
 
564
- #: ../includes/tab.php:297
565
  msgid "Pro Version"
566
  msgstr ""
567
 
568
- #: ../includes/template.php:213 ../includes/template.php:297
569
  msgid "All available Templates"
570
  msgstr ""
571
 
572
- #: ../includes/template.php:214 ../includes/template.php:298
573
  msgid "Selected by CF7 Skins Team"
574
  msgstr ""
575
 
576
- #: ../includes/template.php:222 ../includes/template.php:304
577
  msgid "Feature Filter"
578
  msgstr ""
579
 
580
- #: ../includes/template.php:266 ../includes/template.php:308
581
  msgid "Search Templates"
582
  msgstr ""
583
 
584
- #: ../includes/template.php:267 ../includes/template.php:309
585
  msgid "Search templates..."
586
  msgstr ""
587
 
588
- #: ../includes/template.php:400
589
  msgid ""
590
  "Select to apply the Template to your form - appears in the form editing "
591
  "area, where you can edit your requirements."
592
  msgstr ""
593
 
594
- #: ../includes/template.php:401
595
  msgid ""
596
  "Show detailed information about this Template, with layout, description and "
597
  "usage details."
598
  msgstr ""
599
 
600
- #: ../includes/template.php:430
601
  msgid ""
602
- "Use Expanded View to view template features - shows layout, description & "
603
  "usage details."
604
  msgstr ""
605
 
606
- #: ../includes/template.php:431
607
  msgid ""
608
  "Select to apply the Template to your form - appears in the Form Editing "
609
  "area, where you can edit to your requirements."
610
  msgstr ""
611
 
612
- #: ../includes/template.php:432
613
  msgid "Return to Template Gallery/Grid view."
614
  msgstr ""
615
 
616
- #: ../includes/template.php:450
617
  msgid ""
618
  "Select to apply the Template to your form - appears in the Form editing "
619
  "area, where you can edit to your requirements."
620
  msgstr ""
621
 
622
- #: ../includes/template.php:451
623
  msgid "Return to Template Gallery/ Grid View"
624
  msgstr ""
625
 
@@ -628,7 +622,7 @@ msgid "Contact Form"
628
  msgstr ""
629
 
630
  #: ../skins/templates/contact/contact.php:20
631
- #: ../skins/templates/default/default-cf7-form.php:17
632
  msgid "Your Name (required)"
633
  msgstr ""
634
 
@@ -637,7 +631,7 @@ msgid "Email Address (required)"
637
  msgstr ""
638
 
639
  #: ../skins/templates/contact/contact.php:22
640
- #: ../skins/templates/default/default-cf7-form.php:26
641
  msgid "Your Message"
642
  msgstr ""
643
 
@@ -660,11 +654,11 @@ msgstr ""
660
  msgid "Required"
661
  msgstr ""
662
 
663
- #: ../skins/templates/default/default-cf7-form.php:20
664
  msgid "Your Email (required)"
665
  msgstr ""
666
 
667
- #: ../skins/templates/default/default-cf7-form.php:29
668
  msgid "Send"
669
  msgstr ""
670
 
4
  msgstr ""
5
  "Project-Id-Version: Contact Form 7 Skins 0.0\n"
6
  "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2015-08-26 20:33+0700\n"
8
+ "PO-Revision-Date: 2015-08-26 20:33+0700\n"
9
  "Last-Translator: Selz <engineer@selz.com>\n"
10
  "Language-Team: Neil Murray <nmurray@exemail.com.au>\n"
11
  "Language: en_US\n"
18
  "X-Generator: Poedit 1.5.7\n"
19
  "X-Poedit-SearchPath-0: ..\n"
20
 
21
+ #: ../index.php:174
22
  #, php-format
23
  msgid "<a href=\"%s\">Contact Form 7</a> must be installed to use this plugin."
24
  msgstr ""
25
 
26
+ #: ../includes/admin.php:93
27
  msgid "Loading template..."
28
  msgstr ""
29
 
30
+ #: ../includes/admin.php:94
31
  msgid "Empty filter, please select a filter."
32
  msgstr ""
33
 
34
+ #: ../includes/admin.php:95 ../includes/style.php:375
35
+ #: ../includes/style.php:412 ../includes/template.php:384
36
+ #: ../includes/template.php:422
37
  msgid "Select"
38
  msgstr ""
39
 
40
+ #: ../includes/admin.php:96 ../includes/style.php:375
41
+ #: ../includes/style.php:412 ../includes/template.php:384
42
+ #: ../includes/template.php:422
43
  msgid "Selected"
44
  msgstr ""
45
 
46
+ #: ../includes/admin.php:97 ../includes/style.php:422
47
+ #: ../includes/template.php:431
48
  msgid "Expanded View"
49
  msgstr ""
50
 
51
+ #: ../includes/admin.php:113 ../includes/admin.php:136
52
  msgid "Skins"
53
  msgstr ""
54
 
55
+ #: ../includes/admin.php:135
56
+ msgid "Click to toggle"
57
+ msgstr ""
58
+
59
  #: ../includes/EDD_SL_Plugin_Updater.php:177
60
  #, php-format
61
  msgid ""
79
  msgid "Error"
80
  msgstr ""
81
 
82
+ #: ../includes/license.php:35
83
  msgid "Licenses"
84
  msgstr ""
85
 
86
+ #: ../includes/license.php:51
87
+ msgid "Plugin Name"
88
  msgstr ""
89
 
90
+ #: ../includes/license.php:52
91
+ msgid "License Key"
92
  msgstr ""
93
 
94
+ #: ../includes/license.php:53
95
+ msgid "Site URL"
 
 
 
 
 
96
  msgstr ""
97
 
98
+ #: ../includes/logs.php:40
99
  msgid "Logs"
100
  msgstr ""
101
 
102
+ #: ../includes/logs.php:54
103
  msgid "Get Version"
104
  msgstr ""
105
 
106
+ #: ../includes/logs.php:60
107
  msgid "Activation"
108
  msgstr ""
109
 
110
+ #: ../includes/logs.php:66
111
  msgid "Deactivation"
112
  msgstr ""
113
 
114
+ #: ../includes/logs.php:102 ../includes/logs.php:129 ../includes/logs.php:181
115
  msgid "Not available"
116
  msgstr ""
117
 
123
  msgid "Advanced"
124
  msgstr ""
125
 
126
+ #: ../includes/settings.php:85
127
  msgid "Contact Form 7 Skins Settings"
128
  msgstr ""
129
 
130
+ #: ../includes/settings.php:102
131
  msgid "Save Changes"
132
  msgstr ""
133
 
134
+ #: ../includes/settings.php:147
135
  msgid "Color Scheme"
136
  msgstr ""
137
 
138
+ #: ../includes/settings.php:150
139
  msgid "Select color scheme for CF7 Skins interface."
140
  msgstr ""
141
 
142
+ #: ../includes/settings.php:169
143
  msgid "Display Log"
144
  msgstr ""
145
 
146
+ #: ../includes/settings.php:172
147
  msgid "Displays plugin log tab."
148
  msgstr ""
149
 
150
+ #: ../includes/settings.php:176
151
  msgid "Delete Settings"
152
  msgstr ""
153
 
154
+ #: ../includes/settings.php:179
155
  msgid "Remove all plugin data on plugin deletion."
156
  msgstr ""
157
 
158
+ #: ../includes/settings.php:312
159
  msgid "active"
160
  msgstr ""
161
 
162
+ #: ../includes/settings.php:313
163
  msgid "Deactivate License"
164
  msgstr ""
165
 
166
+ #: ../includes/settings.php:316
167
  msgid "invalid"
168
  msgstr ""
169
 
170
+ #: ../includes/settings.php:318
171
  msgid "Activate License"
172
  msgstr ""
173
 
174
+ #: ../includes/settings.php:359
175
  msgid "Default"
176
  msgstr ""
177
 
178
+ #: ../includes/settings.php:365
179
  msgid "Wheat"
180
  msgstr ""
181
 
182
+ #: ../includes/settings.php:371
183
  msgid "Ocean"
184
  msgstr ""
185
 
186
+ #: ../includes/style.php:139 ../includes/style.php:220
187
+ #: ../includes/style.php:309
188
  msgid "Colors"
189
  msgstr ""
190
 
191
+ #: ../includes/style.php:140
192
  msgid "Black"
193
  msgstr ""
194
 
195
+ #: ../includes/style.php:141
196
  msgid "Brown"
197
  msgstr ""
198
 
199
+ #: ../includes/style.php:142
200
  msgid "Gray"
201
  msgstr ""
202
 
203
+ #: ../includes/style.php:143
204
  msgid "Green"
205
  msgstr ""
206
 
207
+ #: ../includes/style.php:144
208
  msgid "Orange"
209
  msgstr ""
210
 
211
+ #: ../includes/style.php:145
212
  msgid "Pink"
213
  msgstr ""
214
 
215
+ #: ../includes/style.php:146
216
  msgid "Purple"
217
  msgstr ""
218
 
219
+ #: ../includes/style.php:147
220
  msgid "Red"
221
  msgstr ""
222
 
223
+ #: ../includes/style.php:148
224
  msgid "Silver"
225
  msgstr ""
226
 
227
+ #: ../includes/style.php:149
228
  msgid "Tan"
229
  msgstr ""
230
 
231
+ #: ../includes/style.php:150
232
  msgid "White"
233
  msgstr ""
234
 
235
+ #: ../includes/style.php:151
236
  msgid "Yellow"
237
  msgstr ""
238
 
239
+ #: ../includes/style.php:152
240
  msgid "Dark"
241
  msgstr ""
242
 
243
+ #: ../includes/style.php:153
244
  msgid "Light"
245
  msgstr ""
246
 
247
+ #: ../includes/style.php:156
248
  msgid "Layout"
249
  msgstr ""
250
 
251
+ #: ../includes/style.php:157 ../includes/template.php:175
252
  msgid "Fixed Layout"
253
  msgstr ""
254
 
255
+ #: ../includes/style.php:158 ../includes/template.php:176
256
  msgid "Fluid Layout"
257
  msgstr ""
258
 
259
+ #: ../includes/style.php:159 ../includes/template.php:177
260
  msgid "Responsive Layout"
261
  msgstr ""
262
 
263
+ #: ../includes/style.php:160 ../includes/template.php:178
264
  msgid "One Column"
265
  msgstr ""
266
 
267
+ #: ../includes/style.php:161 ../includes/template.php:179
268
  msgid "One or Two Column"
269
  msgstr ""
270
 
271
+ #: ../includes/style.php:162 ../includes/template.php:180
272
  msgid "One, Two or Three Column"
273
  msgstr ""
274
 
275
+ #: ../includes/style.php:165
276
  msgid "Features"
277
  msgstr ""
278
 
279
+ #: ../includes/style.php:166 ../includes/template.php:184
280
  msgid "Fieldsets"
281
  msgstr ""
282
 
283
+ #: ../includes/style.php:167 ../includes/template.php:185
284
  msgid "Background"
285
  msgstr ""
286
 
287
+ #: ../includes/style.php:168 ../includes/template.php:186
288
  msgid "Gradients"
289
  msgstr ""
290
 
291
+ #: ../includes/style.php:171
292
+ #: ../skins/templates/default/default-cf7-form.php:24
293
  msgid "Subject"
294
  msgstr ""
295
 
296
+ #: ../includes/style.php:172 ../includes/template.php:190
297
  msgid "Business"
298
  msgstr ""
299
 
300
+ #: ../includes/style.php:173 ../includes/template.php:191
301
  #: ../skins/templates/event/event.php:18
302
  msgid "Event"
303
  msgstr ""
304
 
305
+ #: ../includes/style.php:174 ../includes/template.php:192
306
  msgid "Holiday"
307
  msgstr ""
308
 
309
+ #: ../includes/style.php:175 ../includes/template.php:193
310
  msgid "Individual"
311
  msgstr ""
312
 
313
+ #: ../includes/style.php:176 ../includes/template.php:194
314
  msgid "Seasonal"
315
  msgstr ""
316
 
317
+ #: ../includes/style.php:197 ../includes/style.php:285
318
  msgid "All available Styles"
319
  msgstr ""
320
 
321
+ #: ../includes/style.php:197 ../includes/style.php:285
322
+ #: ../includes/template.php:214 ../includes/template.php:298
323
  msgid "All"
324
  msgstr ""
325
 
326
+ #: ../includes/style.php:198 ../includes/style.php:286
327
  msgid "Selected by the CF7 Skins team"
328
  msgstr ""
329
 
330
+ #: ../includes/style.php:198 ../includes/style.php:286
331
+ #: ../includes/template.php:215 ../includes/template.php:299
332
  msgid "Featured"
333
  msgstr ""
334
 
335
+ #: ../includes/style.php:199 ../includes/style.php:287
336
+ #: ../includes/template.php:216 ../includes/template.php:300
337
  msgid "Commonly used"
338
  msgstr ""
339
 
340
+ #: ../includes/style.php:199 ../includes/style.php:287
341
+ #: ../includes/template.php:216 ../includes/template.php:300
342
  msgid "Popular"
343
  msgstr ""
344
 
345
+ #: ../includes/style.php:200 ../includes/style.php:288
346
+ #: ../includes/template.php:217 ../includes/template.php:301
347
  msgid "Recently added"
348
  msgstr ""
349
 
350
+ #: ../includes/style.php:200 ../includes/style.php:288
351
+ #: ../includes/template.php:217 ../includes/template.php:301
352
  msgid "Latest"
353
  msgstr ""
354
 
355
+ #: ../includes/style.php:206 ../includes/style.php:292
356
+ #: ../includes/template.php:223 ../includes/template.php:305
357
  msgid "Narrow your choices based on your specific requirements"
358
  msgstr ""
359
 
360
+ #: ../includes/style.php:211 ../includes/style.php:302
361
  msgid ""
362
  "Check all the boxes that meet your specific requirements and then click "
363
  "apply filters."
364
  msgstr ""
365
 
366
+ #: ../includes/style.php:211 ../includes/style.php:302
367
+ #: ../includes/template.php:228 ../includes/template.php:315
368
  msgid "Apply Filters"
369
  msgstr ""
370
 
371
+ #: ../includes/style.php:212 ../includes/style.php:303
372
+ #: ../includes/template.php:229 ../includes/template.php:316
373
  msgid "Clear"
374
  msgstr ""
375
 
376
+ #: ../includes/style.php:239 ../includes/style.php:327
377
+ #: ../includes/template.php:252 ../includes/template.php:336
378
  msgid "Filtering by:"
379
  msgstr ""
380
 
381
+ #: ../includes/style.php:241 ../includes/style.php:329
382
+ #: ../includes/template.php:254 ../includes/template.php:338
383
  msgid "Edit"
384
  msgstr ""
385
 
386
+ #: ../includes/style.php:246 ../includes/style.php:334
387
+ #: ../includes/template.php:259 ../includes/template.php:342
388
  msgid ""
389
  "Sort by Name, Date and License (free or pro) – use arrow to reverse sort "
390
  "order"
391
  msgstr ""
392
 
393
+ #: ../includes/style.php:246 ../includes/style.php:334
394
+ #: ../includes/template.php:259 ../includes/template.php:342
395
  msgid "Sort by"
396
  msgstr ""
397
 
398
+ #: ../includes/style.php:248 ../includes/style.php:336
399
+ #: ../includes/template.php:261 ../includes/template.php:344
400
  #: ../skins/templates/event/event.php:20
401
  #: ../skins/templates/fieldset-basic/fieldset-basic.php:20
402
  #: ../skins/templates/fieldset-in-fieldset/fieldset-in-fieldset.php:20
405
  msgid "Name"
406
  msgstr ""
407
 
408
+ #: ../includes/style.php:249 ../includes/style.php:337
409
+ #: ../includes/template.php:262 ../includes/template.php:345
410
  msgid "Date"
411
  msgstr ""
412
 
413
+ #: ../includes/style.php:250 ../includes/style.php:338
414
+ #: ../includes/template.php:263 ../includes/template.php:346
415
  msgid "License"
416
  msgstr ""
417
 
418
+ #: ../includes/style.php:254 ../includes/style.php:296
419
  msgid "Search Styles"
420
  msgstr ""
421
 
422
+ #: ../includes/style.php:255 ../includes/style.php:297
423
  msgid "Search styles..."
424
  msgstr ""
425
 
426
+ #: ../includes/style.php:391 ../includes/style.php:423
427
  msgid ""
428
  "Select to apply the Style to your form - is applied to your form once you "
429
  "Save."
430
  msgstr ""
431
 
432
+ #: ../includes/style.php:392
433
  msgid ""
434
  "Show detailed information about this Style - overview of the appearance and "
435
  "layout with description and usage details."
436
  msgstr ""
437
 
438
+ #: ../includes/style.php:392 ../includes/template.php:402
 
439
  #: ../skins/templates/suggestion/suggestion.php:24
440
  msgid "Details"
441
  msgstr ""
442
 
443
+ #: ../includes/style.php:422
444
  msgid ""
445
+ "Use Expanded View to view Styles features - shows all form fields available "
446
  "in Contact Form 7."
447
  msgstr ""
448
 
449
+ #: ../includes/style.php:424
450
  msgid "Return to Style Gallery/Grid view."
451
  msgstr ""
452
 
453
+ #: ../includes/style.php:424 ../includes/style.php:441
454
+ #: ../includes/template.php:433 ../includes/template.php:449
455
  msgid "Close"
456
  msgstr ""
457
 
458
+ #: ../includes/style.php:429 ../includes/style.php:449
459
+ #: ../includes/template.php:438 ../includes/template.php:457
 
 
 
 
460
  msgid "Description"
461
  msgstr ""
462
 
463
+ #: ../includes/style.php:432 ../includes/style.php:452
464
+ #: ../includes/template.php:441 ../includes/template.php:460
465
  msgid "Instructions"
466
  msgstr ""
467
 
468
+ #: ../includes/style.php:439 ../includes/template.php:447
469
  msgid "Return to Details View"
470
  msgstr ""
471
 
472
+ #: ../includes/style.php:439 ../includes/template.php:447
473
  msgid "Details View"
474
  msgstr ""
475
 
476
+ #: ../includes/style.php:440
477
  msgid ""
478
  "Select to apply the Style to your form - is applied to your form once you "
479
  "Save"
480
  msgstr ""
481
 
482
+ #: ../includes/style.php:441
483
  msgid "Return to Style Gallery/Grid View"
484
  msgstr ""
485
 
486
+ #: ../includes/tab.php:30 ../includes/tab.php:226
487
  msgid "Template"
488
  msgstr ""
489
 
490
+ #: ../includes/tab.php:31 ../includes/tab.php:234
491
  msgid "Style"
492
  msgstr ""
493
 
494
+ #: ../includes/tab.php:126
495
  msgid "No templates found. Try a different search."
496
  msgstr ""
497
 
498
+ #: ../includes/tab.php:202
499
  msgid "No styles found. Try a different search."
500
  msgstr ""
501
 
502
+ #: ../includes/tab.php:227
503
  msgid ""
504
  "Each Template acts as an easy to follow guide, which can be adapted to your "
505
+ "requirements"
506
  msgstr ""
507
 
508
+ #: ../includes/tab.php:228
509
  msgid ""
510
  "Choose a Template for your form – then you can add, copy or remove fields to "
511
  "match your requirements."
512
  msgstr ""
513
 
514
+ #: ../includes/tab.php:235
515
  msgid ""
516
  "Each Style covers the full range of standard form elements available within "
517
+ "Contact Form 7"
518
  msgstr ""
519
 
520
+ #: ../includes/tab.php:236
521
  msgid ""
522
  "You can change the Style applied to your form by simply selecting a "
523
  "different Style"
524
  msgstr ""
525
 
526
+ #: ../includes/tab.php:243
527
  msgid "!"
528
  msgstr ""
529
 
530
+ #: ../includes/tab.php:244 ../includes/tab.php:311
531
  msgid "?"
532
  msgstr ""
533
 
534
+ #: ../includes/tab.php:283
535
  msgid "Documentation"
536
  msgstr ""
537
 
538
+ #: ../includes/tab.php:284
539
  msgid "FAQ"
540
  msgstr ""
541
 
542
+ #: ../includes/tab.php:285
543
  msgid "Tutorials"
544
  msgstr ""
545
 
546
+ #: ../includes/tab.php:286
547
  msgid "Knowledge Base"
548
  msgstr ""
549
 
550
+ #: ../includes/tab.php:298
551
  msgid "Support"
552
  msgstr ""
553
 
554
+ #: ../includes/tab.php:299
555
  msgid "Blog"
556
  msgstr ""
557
 
558
+ #: ../includes/tab.php:300
559
  msgid "Pro Version"
560
  msgstr ""
561
 
562
+ #: ../includes/template.php:214 ../includes/template.php:298
563
  msgid "All available Templates"
564
  msgstr ""
565
 
566
+ #: ../includes/template.php:215 ../includes/template.php:299
567
  msgid "Selected by CF7 Skins Team"
568
  msgstr ""
569
 
570
+ #: ../includes/template.php:223 ../includes/template.php:305
571
  msgid "Feature Filter"
572
  msgstr ""
573
 
574
+ #: ../includes/template.php:267 ../includes/template.php:309
575
  msgid "Search Templates"
576
  msgstr ""
577
 
578
+ #: ../includes/template.php:268 ../includes/template.php:310
579
  msgid "Search templates..."
580
  msgstr ""
581
 
582
+ #: ../includes/template.php:401
583
  msgid ""
584
  "Select to apply the Template to your form - appears in the form editing "
585
  "area, where you can edit your requirements."
586
  msgstr ""
587
 
588
+ #: ../includes/template.php:402
589
  msgid ""
590
  "Show detailed information about this Template, with layout, description and "
591
  "usage details."
592
  msgstr ""
593
 
594
+ #: ../includes/template.php:431
595
  msgid ""
596
+ "Use Expanded View to view Template features - shows layout, description & "
597
  "usage details."
598
  msgstr ""
599
 
600
+ #: ../includes/template.php:432
601
  msgid ""
602
  "Select to apply the Template to your form - appears in the Form Editing "
603
  "area, where you can edit to your requirements."
604
  msgstr ""
605
 
606
+ #: ../includes/template.php:433
607
  msgid "Return to Template Gallery/Grid view."
608
  msgstr ""
609
 
610
+ #: ../includes/template.php:448
611
  msgid ""
612
  "Select to apply the Template to your form - appears in the Form editing "
613
  "area, where you can edit to your requirements."
614
  msgstr ""
615
 
616
+ #: ../includes/template.php:449
617
  msgid "Return to Template Gallery/ Grid View"
618
  msgstr ""
619
 
622
  msgstr ""
623
 
624
  #: ../skins/templates/contact/contact.php:20
625
+ #: ../skins/templates/default/default-cf7-form.php:18
626
  msgid "Your Name (required)"
627
  msgstr ""
628
 
631
  msgstr ""
632
 
633
  #: ../skins/templates/contact/contact.php:22
634
+ #: ../skins/templates/default/default-cf7-form.php:27
635
  msgid "Your Message"
636
  msgstr ""
637
 
654
  msgid "Required"
655
  msgstr ""
656
 
657
+ #: ../skins/templates/default/default-cf7-form.php:21
658
  msgid "Your Email (required)"
659
  msgstr ""
660
 
661
+ #: ../skins/templates/default/default-cf7-form.php:30
662
  msgid "Send"
663
  msgstr ""
664
 
readme.txt CHANGED
@@ -2,13 +2,13 @@
2
  Contributors: buzztone
3
  Tags: contact form 7, form, skin, template, style, html, css
4
  Requires at least: 4.1
5
- Tested up to: 4.2.2
6
- Stable tag: 1.1
7
  Author URI: http://cf7skins.com
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
- Makes styling of Contact Form 7 forms much easier – even if you dont have HTML + CSS skills.
12
 
13
  == Description ==
14
 
@@ -18,17 +18,16 @@ Simply select from a list of compatible Templates that cover many common forms a
18
 
19
  Each Template acts as an easy to follow guide, which can be adapted to your particular requirements. Every Style covers the full range of Contact Form 7 form elements.
20
 
21
- CF7 Skins is highly customizable and easy to learn, even for beginners. CF7 Skins makes building and styling Contact Form 7 forms much easier - even if you don't have HTML and CSS skills.
22
 
23
  = CF7 Skins Features =
24
 
25
- Here are some of the things you can do with CF7 Skins:
26
 
27
  * Create a vast range of simple and complex forms using Contact Form 7.
28
  * Select from a list of built-in and ready to use Templates.
29
  * Easily edit built-in Templates to add, remove or modify form fields.
30
- * Choose from a range of compatible Contact Form 7 from Styles.
31
- * Works right within the normal Contact Form 7 plugin interface.
32
  * Build professional looking Contact Form 7 forms without HTML and CSS knowledge.
33
 
34
  [Read more about CF7 Skins](http://cf7skins.com/).
@@ -39,22 +38,32 @@ With the Pro version of the plugin [CF7 Skins Pro](http://cf7skins.com/pro-versi
39
  * Additional Templates and Styles to use with your forms.
40
  * Access to [premium email support](http://cf7skins.com/support/#premium-email-support) by paid support staff.
41
 
42
- = Multi-part Form Add-on now Available =
43
- Our [CF7 Skins Multi](http://cf7skins.com/add-ons/) Add-on includes the features you need to make user friendly multi-part Contact Form 7 forms.
 
 
 
 
 
 
 
 
 
 
44
 
45
  * **Tab Titles** – with click Navigation
46
- * **Progress Bar** – indicates to users where they are (optional)
47
- * **Navigation Buttons** – Previous & Next on each Tab (optional)
48
- * **Pagination** – current page / total no. (optional)
49
- * **Start & End Tabs** – (optional) additional Navigation Buttons
50
- * **Thank You Tab** – (optional) extra page displayed only after completed form submission
51
  * **Design Matches CF7 Skins Style** – styling of multi-form elements matches selected CF7 Skins Style
52
 
53
  See: [Plugin Website](http://cf7skins.com/) | [Documentation](http://docs.cf7skins.com/) | [FAQs](http://kb.cf7skins.com/faq/) | [Pro Version](http://cf7skins.com/pro-version/) | [Add-ons](http://cf7skins.com/add-ons/)
54
 
55
  == Installation ==
56
 
57
- 1. Download the plugins zip file and visit **Plugins &gt; Add New** in your WordPress admin area.
58
  1. Click on the **Upload Plugin** button on top and then simply upload the zip file.
59
  1. WordPress will now upload the zip file from your computer to your website, extract it, and install the plugin.
60
  1. Click on the activate link to start using the plugin.
@@ -68,6 +77,8 @@ See: [Plugin Website](http://cf7skins.com/) | [Documentation](http://docs.cf7ski
68
 
69
  Having trouble? Learn more about how to install plugins on [WordPress Codex](http://codex.wordpress.org/Managing_Plugins).
70
 
 
 
71
  == Frequently Asked Questions ==
72
 
73
  = What is CF7 Skins? =
@@ -86,6 +97,28 @@ Their is a range of [Tutorials](http://kb.cf7skins.com/category/tutorials/) avai
86
 
87
  You can get more templates and styles with the [Pro Version](http://cf7skins.com/pro-version/) of the plugin. The Pro Version also includes access to [premium email support](http://cf7skins.com/support/#premium-email-support) by paid support staff.
88
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  = Where can I find answers to Frequently Asked Questions? =
90
  Many questions have been answered on the [CF7 Skins FAQ](http://kb.cf7skins.com/faq/) on the plugin website.
91
 
@@ -93,6 +126,8 @@ Many questions have been answered on the [CF7 Skins FAQ](http://kb.cf7skins.com/
93
 
94
  * Indonesian (Bahasa Indonesia; id_ID) - Sastra Manurung
95
 
 
 
96
  == Screenshots ==
97
 
98
  1. CF7 Skins user interface showing Template and Style tabs
@@ -105,6 +140,14 @@ Many questions have been answered on the [CF7 Skins FAQ](http://kb.cf7skins.com/
105
 
106
  == Changelog ==
107
 
 
 
 
 
 
 
 
 
108
  = 1.1 - 2015-06-30 =
109
 
110
  * FEATURE: Add Styles
@@ -128,4 +171,4 @@ Many questions have been answered on the [CF7 Skins FAQ](http://kb.cf7skins.com/
128
  * Initial Release
129
 
130
  == Upgrade Notice ==
131
- * 1.1 : Update via WordPress.
2
  Contributors: buzztone
3
  Tags: contact form 7, form, skin, template, style, html, css
4
  Requires at least: 4.1
5
+ Tested up to: 4.4
6
+ Stable tag: 1.1.1
7
  Author URI: http://cf7skins.com
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
+ Makes styling of Contact Form 7 forms much easier – even if you don't have HTML + CSS skills.
12
 
13
  == Description ==
14
 
18
 
19
  Each Template acts as an easy to follow guide, which can be adapted to your particular requirements. Every Style covers the full range of Contact Form 7 form elements.
20
 
21
+ CF7 Skins is highly customizable and easy to learn, even for beginners.
22
 
23
  = CF7 Skins Features =
24
 
25
+ Here are some of the things you can do with CF7 Skins:
26
 
27
  * Create a vast range of simple and complex forms using Contact Form 7.
28
  * Select from a list of built-in and ready to use Templates.
29
  * Easily edit built-in Templates to add, remove or modify form fields.
30
+ * Choose from a range of compatible Contact Form 7 from Styles.
 
31
  * Build professional looking Contact Form 7 forms without HTML and CSS knowledge.
32
 
33
  [Read more about CF7 Skins](http://cf7skins.com/).
38
  * Additional Templates and Styles to use with your forms.
39
  * Access to [premium email support](http://cf7skins.com/support/#premium-email-support) by paid support staff.
40
 
41
+ = Range of Add-ons available =
42
+ Our [CF7 Skins Add-ons](http://cf7skins.com/add-ons/) bring the functionality available in other premium WordPress Form plugins directly within Contact Form 7.
43
+
44
+ [CF7 Skins Ready](http://cf7skins.com/add-ons/ready/) provides a range of useful pre-defined styles that can be used in all Contact Form 7 forms:
45
+
46
+ * **box** – displays enclosed elements in a surrounding box
47
+ * **column** – displays enclosed elements in a vertical column
48
+ * **grid** – implements a CSS form grid
49
+ * **singleline** – displays enclosed elements on a single line
50
+ * **checkbox-radio-horizontal** – displays checkbox & radio button elements in horizontal line
51
+
52
+ [CF7 Skins Multi](http://cf7skins.com/add-ons/multi/) includes the features you need to make user friendly multi-part Contact Form 7 forms:
53
 
54
  * **Tab Titles** – with click Navigation
55
+ * **Progress Bar** – indicates to users where they are
56
+ * **Navigation Buttons** – Previous & Next on each Tab
57
+ * **Pagination** – current page / total no.
58
+ * **Start & End Tabs** – additional Navigation Buttons
59
+ * **Thank You Tab** – extra page displayed only after completed form submission
60
  * **Design Matches CF7 Skins Style** – styling of multi-form elements matches selected CF7 Skins Style
61
 
62
  See: [Plugin Website](http://cf7skins.com/) | [Documentation](http://docs.cf7skins.com/) | [FAQs](http://kb.cf7skins.com/faq/) | [Pro Version](http://cf7skins.com/pro-version/) | [Add-ons](http://cf7skins.com/add-ons/)
63
 
64
  == Installation ==
65
 
66
+ 1. Download the plugin's zip file and visit **Plugins &gt; Add New** in your WordPress admin area.
67
  1. Click on the **Upload Plugin** button on top and then simply upload the zip file.
68
  1. WordPress will now upload the zip file from your computer to your website, extract it, and install the plugin.
69
  1. Click on the activate link to start using the plugin.
77
 
78
  Having trouble? Learn more about how to install plugins on [WordPress Codex](http://codex.wordpress.org/Managing_Plugins).
79
 
80
+ See: [Plugin Website](http://cf7skins.com/) | [Documentation](http://docs.cf7skins.com/) | [FAQs](http://kb.cf7skins.com/faq/) | [Pro Version](http://cf7skins.com/pro-version/) | [Add-ons](http://cf7skins.com/add-ons/)
81
+
82
  == Frequently Asked Questions ==
83
 
84
  = What is CF7 Skins? =
97
 
98
  You can get more templates and styles with the [Pro Version](http://cf7skins.com/pro-version/) of the plugin. The Pro Version also includes access to [premium email support](http://cf7skins.com/support/#premium-email-support) by paid support staff.
99
 
100
+ = What Add-ons are available? =
101
+
102
+ Our [CF7 Skins Add-ons](http://cf7skins.com/add-ons/) bring the functionality available in other premium WordPress Form plugins directly within Contact Form 7.
103
+
104
+ [CF7 Skins Ready](http://cf7skins.com/add-ons/ready/) provides a range of useful pre-defined styles that can be used in all Contact Form 7 forms:
105
+
106
+ * **box** – displays enclosed elements in a surrounding box
107
+ * **column** – displays enclosed elements in a vertical column
108
+ * **grid** – implements a CSS form grid
109
+ * **singleline** – displays enclosed elements on a single line
110
+ * **checkbox-radio-horizontal** – displays checkbox & radio button elements in horizontal line
111
+
112
+ [CF7 Skins Multi](http://cf7skins.com/add-ons/multi/) includes the features you need to make user friendly multi-part Contact Form 7 forms:
113
+
114
+ * **Tab Titles** – with click Navigation
115
+ * **Progress Bar** – indicates to users where they are
116
+ * **Navigation Buttons** – Previous & Next on each Tab
117
+ * **Pagination** – current page / total no.
118
+ * **Start & End Tabs** – additional Navigation Buttons
119
+ * **Thank You Tab** – extra page displayed only after completed form submission
120
+ * **Design Matches CF7 Skins Style** – styling of multi-form elements matches selected CF7 Skins Style
121
+
122
  = Where can I find answers to Frequently Asked Questions? =
123
  Many questions have been answered on the [CF7 Skins FAQ](http://kb.cf7skins.com/faq/) on the plugin website.
124
 
126
 
127
  * Indonesian (Bahasa Indonesia; id_ID) - Sastra Manurung
128
 
129
+ See: [Plugin Website](http://cf7skins.com/) | [Documentation](http://docs.cf7skins.com/) | [FAQs](http://kb.cf7skins.com/faq/) | [Pro Version](http://cf7skins.com/pro-version/) | [Add-ons](http://cf7skins.com/add-ons/)
130
+
131
  == Screenshots ==
132
 
133
  1. CF7 Skins user interface showing Template and Style tabs
140
 
141
  == Changelog ==
142
 
143
+ = 1.1.1 - 2015-09-21 =
144
+
145
+ * FEATURE: Add support for Ready styles
146
+ * FEATURE: Show active licenses in Licenses tab
147
+ * FIX: Enqueue styles for non-content shortcodes
148
+ * TWEAK: Add tabs & consistent spacing to templates
149
+ * TWEAK: Improve readability of Logs tab
150
+
151
  = 1.1 - 2015-06-30 =
152
 
153
  * FEATURE: Add Styles
171
  * Initial Release
172
 
173
  == Upgrade Notice ==
174
+ * 1.1.1 : Update via WordPress.
skins/styles/berry-delight/berry-delight.css CHANGED
@@ -5,8 +5,8 @@
5
  * Author URI: http://cf7skins.com
6
  * Description: Berry Delight is likely to fit well in websites with softer colors, especially those which follow its peachy-pink color scheme. Use this style to create eye catching forms for any website.
7
  * Instructions:
8
- * Version: 1.1
9
- * Version Date: 2015-06-30
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: pink, grey, white, light
@@ -57,8 +57,8 @@ NOTE: These items should be used to style the overall CF7 form
57
  /** Fieldset, Legend, Label
58
  ------------------------------------------------------------ */
59
  .wpcf7 .cf7s-berry-delight fieldset {
60
- margin: 10px 0;
61
- padding: 10px 20px;
62
  border: 1px solid #fbd4cf;
63
  background: #fbd4cf;
64
  }
@@ -68,7 +68,7 @@ NOTE: These items should be used to style the overall CF7 form
68
  padding: 3px 20px;
69
  color: #fff;
70
  border: 6px solid #fbd4cf;
71
- border-bottom: 0px solid #fbd4cf;
72
  background: #545454;
73
  }
74
 
@@ -79,7 +79,7 @@ NOTE: These items should be used to style the overall CF7 form
79
  }
80
 
81
  .wpcf7 .cf7s-berry-delight fieldset fieldset {
82
- margin: 10px 0;
83
  background: #f6babc;
84
  }
85
 
@@ -99,7 +99,7 @@ NOTE: These items should be used to style the overall CF7 form
99
  .wpcf7 .wpcf7-form.cf7skins.cf7s-berry-delight input,
100
  .wpcf7 .wpcf7-form.cf7skins.cf7s-berry-delight textarea{
101
  margin-bottom: 8px;
102
- padding: 7px;
103
  color: #fff;
104
  border: 1px solid #ffe0dc;
105
  background: #f6babc;
@@ -206,9 +206,6 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
206
  }
207
 
208
  .wpcf7 .cf7s-berry-delight .singleline li {
209
- display: inline-block;
210
- margin: 0 2% 0 0;
211
- width: 47%; /* CHANGE TO CALC */
212
  }
213
 
214
  .wpcf7 .cf7s-berry-delight .singleline input {
@@ -218,24 +215,47 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
218
  .wpcf7 .cf7s-berry-delight .radio-horizontal {
219
  }
220
 
221
- .wpcf7 .cf7s-berry-delight .boxaround {
 
 
 
 
 
 
222
  padding: 10px;
223
- border: 1px solid #fff;
224
  background: #f6babc;
225
  }
226
 
227
- .wpcf7 .cf7s-berry-delight .boxaround1 {
228
  padding: 10px;
229
- border: 1px solid #fff;
230
  background: #f6babc;
231
  }
232
 
233
- .wpcf7 .cf7s-berry-delight .boxaround select {
234
- }
235
-
236
- .wpcf7 .cf7s-berry-delight .boxaround1 select {
237
- }
238
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
239
  /** Multi Styles
240
  NOTE: These styles provide styling for CF7 Skins Multi elements
241
  ------------------------------------------------------------ */
5
  * Author URI: http://cf7skins.com
6
  * Description: Berry Delight is likely to fit well in websites with softer colors, especially those which follow its peachy-pink color scheme. Use this style to create eye catching forms for any website.
7
  * Instructions:
8
+ * Version: 1.2
9
+ * Version Date: 2015-08-31
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: pink, grey, white, light
57
  /** Fieldset, Legend, Label
58
  ------------------------------------------------------------ */
59
  .wpcf7 .cf7s-berry-delight fieldset {
60
+ margin: 10px 0;
61
+ padding: 10px 20px;
62
  border: 1px solid #fbd4cf;
63
  background: #fbd4cf;
64
  }
68
  padding: 3px 20px;
69
  color: #fff;
70
  border: 6px solid #fbd4cf;
71
+ border-bottom: 0px solid #fbd4cf;
72
  background: #545454;
73
  }
74
 
79
  }
80
 
81
  .wpcf7 .cf7s-berry-delight fieldset fieldset {
82
+ margin: 10px 0;
83
  background: #f6babc;
84
  }
85
 
99
  .wpcf7 .wpcf7-form.cf7skins.cf7s-berry-delight input,
100
  .wpcf7 .wpcf7-form.cf7skins.cf7s-berry-delight textarea{
101
  margin-bottom: 8px;
102
+ padding: 7px;
103
  color: #fff;
104
  border: 1px solid #ffe0dc;
105
  background: #f6babc;
206
  }
207
 
208
  .wpcf7 .cf7s-berry-delight .singleline li {
 
 
 
209
  }
210
 
211
  .wpcf7 .cf7s-berry-delight .singleline input {
215
  .wpcf7 .cf7s-berry-delight .radio-horizontal {
216
  }
217
 
218
+ .wpcf7 .cf7s-berry-delight .box {
219
+ padding: 10px;
220
+ border: 1px solid #fff;
221
+ background: #f6babc;
222
+ }
223
+
224
+ .wpcf7 .cf7s-berry-delight .boxaround { /* DELETE */
225
  padding: 10px;
226
+ border: 1px solid #fff;
227
  background: #f6babc;
228
  }
229
 
230
+ .wpcf7 .cf7s-berry-delight .boxaround1 { /* DELETE */
231
  padding: 10px;
232
+ border: 1px solid #fff;
233
  background: #f6babc;
234
  }
235
 
236
+ .wpcf7 .cf7s-berry-delight .box select {
237
+ }
238
+
239
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-berry-delight .grid-hover [data-row-span] [data-field-span]:hover {
240
+ background: #ffefef;
241
+ }
242
+
243
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-berry-delight .grid-lined {
244
+ border-top: 1px solid #fff;
245
+ }
246
+
247
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-berry-delight .grid-lined [data-row-span] {
248
+ border-bottom: 1px solid #fff;
249
+ }
250
+
251
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-berry-delight .grid-lined [data-row-span] [data-field-span] {
252
+ border-right: 1px solid #fff;
253
+ }
254
+
255
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-berry-delight .grid-lined [data-row-span] [data-field-span]:first-child {
256
+ border-left: 1px solid #fff;
257
+ }
258
+
259
  /** Multi Styles
260
  NOTE: These styles provide styling for CF7 Skins Multi elements
261
  ------------------------------------------------------------ */
skins/styles/blush/blush.css CHANGED
@@ -5,8 +5,8 @@
5
  * Author URI: http://cf7skins.com
6
  * Description: Named for its subtlety and soft colors, Blush will blend in with many themes, especially those with a similar color scheme.
7
  * Instructions:
8
- * Version: 1.1
9
- * Version Date: 2015-05-20
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: pink, white, gray, light
@@ -78,7 +78,7 @@ NOTE: These items should be used to style the overall CF7 form
78
  }
79
 
80
  .wpcf7 .cf7s-blush fieldset fieldset {
81
- margin: 10px 0; /* Above CSS overwritten by cf7s-default */
82
  background: #e9d9da;
83
  }
84
 
@@ -206,9 +206,6 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
206
  }
207
 
208
  .wpcf7 .cf7s-blush .singleline li {
209
- display: inline-block;
210
- margin: 0 2% 0 0;
211
- width: 47%; /* CHANGE TO CALC */
212
  }
213
 
214
  .wpcf7 .cf7s-blush .singleline input {
@@ -218,25 +215,49 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
218
  .wpcf7 .cf7s-blush .radio-horizontal {
219
  }
220
 
221
- .wpcf7 .cf7s-blush .boxaround {
 
 
 
 
 
 
 
222
  margin-bottom: 15px;
223
  padding: 10px;
224
  border: 1px solid #bb9393;
225
  background: #e9d9da;
226
  }
227
 
228
- .wpcf7 .cf7s-blush .boxaround1 { /* This name was used previously - selector kept for older forms */
229
  margin-bottom: 15px;
230
  padding: 10px;
231
  border: 1px solid #bb9393;
232
  background: #e9d9da;
233
  }
234
 
235
- .wpcf7 .cf7s-blush .boxaround select {
236
- }
237
-
238
- .wpcf7 .cf7s-blush .boxaround1 select {
239
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
240
 
241
  /** Multi Styles
242
  NOTE: These styles provide styling for CF7 Skins Multi elements
5
  * Author URI: http://cf7skins.com
6
  * Description: Named for its subtlety and soft colors, Blush will blend in with many themes, especially those with a similar color scheme.
7
  * Instructions:
8
+ * Version: 1.2
9
+ * Version Date: 2015-09-02
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: pink, white, gray, light
78
  }
79
 
80
  .wpcf7 .cf7s-blush fieldset fieldset {
81
+ margin: 10px 0; /* Above CSS overwritten by cf7s-default */
82
  background: #e9d9da;
83
  }
84
 
206
  }
207
 
208
  .wpcf7 .cf7s-blush .singleline li {
 
 
 
209
  }
210
 
211
  .wpcf7 .cf7s-blush .singleline input {
215
  .wpcf7 .cf7s-blush .radio-horizontal {
216
  }
217
 
218
+ .wpcf7 .cf7s-blush .box {
219
+ margin-bottom: 15px;
220
+ padding: 10px;
221
+ border: 1px solid #bb9393;
222
+ background: #e9d9da;
223
+ }
224
+
225
+ .wpcf7 .cf7s-blush .boxaround { /* DELETE */
226
  margin-bottom: 15px;
227
  padding: 10px;
228
  border: 1px solid #bb9393;
229
  background: #e9d9da;
230
  }
231
 
232
+ .wpcf7 .cf7s-blush .boxaround1 { /* DELETE */
233
  margin-bottom: 15px;
234
  padding: 10px;
235
  border: 1px solid #bb9393;
236
  background: #e9d9da;
237
  }
238
 
239
+ .wpcf7 .cf7s-blush .box select {
240
+ }
241
+
242
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-blush .grid-hover [data-row-span] [data-field-span]:hover {
243
+ background: #ffeff0;
244
+ }
245
+
246
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-blush .grid-lined {
247
+ border-top: 1px solid #bb9393;
248
+ }
249
+
250
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-blush .grid-lined [data-row-span] {
251
+ border-bottom: 1px solid #bb9393;
252
+ }
253
+
254
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-blush .grid-lined [data-row-span] [data-field-span] {
255
+ border-right: 1px solid #bb9393;
256
+ }
257
+
258
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-blush .grid-lined [data-row-span] [data-field-span]:first-child {
259
+ border-left: 1px solid #bb9393;
260
+ }
261
 
262
  /** Multi Styles
263
  NOTE: These styles provide styling for CF7 Skins Multi elements
skins/styles/cargo/cargo.css CHANGED
@@ -5,8 +5,8 @@
5
  * Author URI: http://cf7skins.com
6
  * Description: Cargo is a soft olive style that will make an appealing addition to websites with a variety of themes - especially those with a similar color scheme.
7
  * Instructions:
8
- * Version: 1.1
9
- * Version Date: 2015-06-30
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: olive, white, light
@@ -57,14 +57,14 @@ NOTE: These items should be used to style the overall CF7 form
57
  /** Fieldset, Legend, Label
58
  ------------------------------------------------------------ */
59
  .wpcf7 .cf7s-cargo fieldset {
60
- margin: 10px 0;
61
- padding: 10px 20px;
62
  border: 1px solid #d6d09e;
63
  background: #d6d09e;
64
  }
65
 
66
  .wpcf7 .cf7s-cargo legend {
67
- font-size: 1.2em;
68
  padding: 3px 20px;
69
  color: #fff;
70
  background: #b6b37c;
@@ -77,9 +77,9 @@ NOTE: These items should be used to style the overall CF7 form
77
  }
78
 
79
  .wpcf7 .cf7s-cargo fieldset fieldset {
80
- margin: 10px 0;
81
  border: 1px solid #eae6c1;
82
- background: #eae6c1;
83
  }
84
 
85
  .wpcf7 .cf7s-cargo fieldset fieldset legend {
@@ -96,7 +96,6 @@ NOTE: These items should be used to style the overall CF7 form
96
  .wpcf7 .wpcf7-form.cf7skins.cf7s-cargo textarea {
97
  margin-bottom: 8px;
98
  padding: 5px 7px;
99
- /* color: #544e2c; */
100
  border: 1px solid #d5d29f;
101
  background: #eae6c1;
102
  }
@@ -206,9 +205,6 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
206
  }
207
 
208
  .wpcf7 .cf7s-cargo .singleline li {
209
- display: inline-block;
210
- margin: 0 2% 0 0;
211
- width: 47%; /* CHANGE TO CALC */
212
  }
213
 
214
  .wpcf7 .cf7s-cargo .singleline input {
@@ -218,23 +214,48 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
218
  .wpcf7 .cf7s-cargo .radio-horizontal {
219
  }
220
 
221
- .wpcf7 .cf7s-cargo .boxaround {
 
 
 
 
 
 
 
222
  padding: 10px;
223
  border: 1px solid #d7d19f;
224
  background: #eae6c1;
225
  }
226
 
227
- .wpcf7 .cf7s-cargo .boxaround1 {
 
228
  padding: 10px;
229
  border: 1px solid #d7d19f;
230
  background: #eae6c1;
231
  }
232
 
233
- .wpcf7 .cf7s-cargo .boxaround select {
234
- }
235
-
236
- .wpcf7 .cf7s-cargo .boxaround1 select {
237
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
238
 
239
  /** Multi Styles
240
  NOTE: These styles provide styling for CF7 Skins Multi elements
5
  * Author URI: http://cf7skins.com
6
  * Description: Cargo is a soft olive style that will make an appealing addition to websites with a variety of themes - especially those with a similar color scheme.
7
  * Instructions:
8
+ * Version: 1.2
9
+ * Version Date: 2015-09-02
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: olive, white, light
57
  /** Fieldset, Legend, Label
58
  ------------------------------------------------------------ */
59
  .wpcf7 .cf7s-cargo fieldset {
60
+ margin: 10px 0;
61
+ padding: 10px 20px;
62
  border: 1px solid #d6d09e;
63
  background: #d6d09e;
64
  }
65
 
66
  .wpcf7 .cf7s-cargo legend {
67
+ font-size: 1.2em;
68
  padding: 3px 20px;
69
  color: #fff;
70
  background: #b6b37c;
77
  }
78
 
79
  .wpcf7 .cf7s-cargo fieldset fieldset {
80
+ margin: 10px 0;
81
  border: 1px solid #eae6c1;
82
+ background: #eae6c1;
83
  }
84
 
85
  .wpcf7 .cf7s-cargo fieldset fieldset legend {
96
  .wpcf7 .wpcf7-form.cf7skins.cf7s-cargo textarea {
97
  margin-bottom: 8px;
98
  padding: 5px 7px;
 
99
  border: 1px solid #d5d29f;
100
  background: #eae6c1;
101
  }
205
  }
206
 
207
  .wpcf7 .cf7s-cargo .singleline li {
 
 
 
208
  }
209
 
210
  .wpcf7 .cf7s-cargo .singleline input {
214
  .wpcf7 .cf7s-cargo .radio-horizontal {
215
  }
216
 
217
+ .wpcf7 .cf7s-cargo .box{
218
+ padding: 10px;
219
+ border: 1px solid #d7d19f;
220
+ background: #eae6c1;
221
+ }
222
+
223
+ .wpcf7 .cf7s-cargo .boxaround { /* DELETE */
224
+ margin-bottom: 15px;
225
  padding: 10px;
226
  border: 1px solid #d7d19f;
227
  background: #eae6c1;
228
  }
229
 
230
+ .wpcf7 .cf7s-cargo .boxaround1 { /* DELETE */
231
+ margin-bottom: 15px;
232
  padding: 10px;
233
  border: 1px solid #d7d19f;
234
  background: #eae6c1;
235
  }
236
 
237
+ .wpcf7 .cf7s-cargo .box select {
238
+ }
239
+
240
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-cargo .grid-hover [data-row-span] [data-field-span]:hover {
241
+ background: #fffded;
242
+ }
243
+
244
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-cargo .grid-lined {
245
+ border-top: 1px solid #b6b37c;
246
+ }
247
+
248
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-cargo .grid-lined [data-row-span] {
249
+ border-bottom: 1px solid #b6b37c;
250
+ }
251
+
252
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-cargo .grid-lined [data-row-span] [data-field-span] {
253
+ border-right: 1px solid #b6b37c;
254
+ }
255
+
256
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-cargo .grid-lined [data-row-span] [data-field-span]:first-child {
257
+ border-left: 1px solid #b6b37c;
258
+ }
259
 
260
  /** Multi Styles
261
  NOTE: These styles provide styling for CF7 Skins Multi elements
skins/styles/caspar/caspar.css CHANGED
@@ -5,8 +5,8 @@
5
  * Author URI: http://cf7skins.com
6
  * Description: Caspar is a simple monochromatic theme with the ability to blend in with most white or grayscale themes. It is incredibly simple yet effective.
7
  * Instructions:
8
- * Version: 1.1
9
- * Version Date: 2015-05-20
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: white, gray, black, light
@@ -78,7 +78,7 @@ NOTE: These items should be used style the overall CF7 form
78
  }
79
 
80
  .wpcf7 .cf7s-caspar fieldset fieldset {
81
- margin: 10px 0; /* Above CSS overwritten by cf7s-default */
82
  }
83
 
84
  .wpcf7 .cf7s-caspar fieldset fieldset legend {
@@ -95,7 +95,7 @@ NOTE: These items should be used style the overall CF7 form
95
  margin-bottom: 8px;
96
  padding: 7px;
97
  border: 1px solid #c3c3c3;
98
- background: #fff;
99
  }
100
 
101
  .wpcf7 .wpcf7-form.cf7skins.cf7s-caspar input[type="text"],
@@ -204,9 +204,6 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
204
  }
205
 
206
  .wpcf7 .cf7s-caspar .singleline li {
207
- display: inline-block;
208
- margin: 0 2% 0 0;
209
- width: 47%; /* CHANGE TO CALC */
210
  }
211
 
212
  .wpcf7 .cf7s-caspar .singleline input {
@@ -216,25 +213,49 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
216
  .wpcf7 .cf7s-caspar .radio-horizontal {
217
  }
218
 
219
- .wpcf7 .cf7s-caspar .boxaround {
 
 
 
 
 
 
 
220
  margin-bottom: 15px;
221
  padding: 10px;
222
  border: 1px solid #c3c3c3;
223
  background: #fff;
224
  }
225
 
226
- .wpcf7 .cf7s-caspar .boxaround1 {
227
  margin-bottom: 15px;
228
  padding: 10px;
229
  border: 1px solid #c3c3c3;
230
  background: #fff;
231
  }
232
 
233
- .wpcf7 .cf7s-caspar .boxaround select {
234
- }
235
-
236
- .wpcf7 .cf7s-caspar .boxaround1 select {
237
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
238
 
239
  /** Multi Styles
240
  NOTE: These styles provide styling for CF7 Skins Multi elements
5
  * Author URI: http://cf7skins.com
6
  * Description: Caspar is a simple monochromatic theme with the ability to blend in with most white or grayscale themes. It is incredibly simple yet effective.
7
  * Instructions:
8
+ * Version: 1.2
9
+ * Version Date: 2015-09-02
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: white, gray, black, light
78
  }
79
 
80
  .wpcf7 .cf7s-caspar fieldset fieldset {
81
+ margin: 10px 0; /* Above CSS overwritten by cf7s-default */
82
  }
83
 
84
  .wpcf7 .cf7s-caspar fieldset fieldset legend {
95
  margin-bottom: 8px;
96
  padding: 7px;
97
  border: 1px solid #c3c3c3;
98
+ background: #fff;
99
  }
100
 
101
  .wpcf7 .wpcf7-form.cf7skins.cf7s-caspar input[type="text"],
204
  }
205
 
206
  .wpcf7 .cf7s-caspar .singleline li {
 
 
 
207
  }
208
 
209
  .wpcf7 .cf7s-caspar .singleline input {
213
  .wpcf7 .cf7s-caspar .radio-horizontal {
214
  }
215
 
216
+ .wpcf7 .cf7s-caspar .box{
217
+ margin-bottom: 15px;
218
+ padding: 10px;
219
+ border: 1px solid #c3c3c3;
220
+ background: #fff;
221
+ }
222
+
223
+ .wpcf7 .cf7s-caspar .boxaround { /* DELETE */
224
  margin-bottom: 15px;
225
  padding: 10px;
226
  border: 1px solid #c3c3c3;
227
  background: #fff;
228
  }
229
 
230
+ .wpcf7 .cf7s-caspar .boxaround1 { /* DELETE */
231
  margin-bottom: 15px;
232
  padding: 10px;
233
  border: 1px solid #c3c3c3;
234
  background: #fff;
235
  }
236
 
237
+ .wpcf7 .cf7s-caspar .box select {
238
+ }
239
+
240
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-caspar .grid-hover [data-row-span] [data-field-span]:hover {
241
+ background: #ededed;
242
+ }
243
+
244
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-caspar .grid-lined {
245
+ border-top: 1px solid #c3c3c3;
246
+ }
247
+
248
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-caspar .grid-lined [data-row-span] {
249
+ border-bottom: 1px solid #c3c3c3;
250
+ }
251
+
252
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-caspar .grid-lined [data-row-span] [data-field-span] {
253
+ border-right: 1px solid #c3c3c3;
254
+ }
255
+
256
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-caspar .grid-lined [data-row-span] [data-field-span]:first-child {
257
+ border-left: 1px solid #c3c3c3;
258
+ }
259
 
260
  /** Multi Styles
261
  NOTE: These styles provide styling for CF7 Skins Multi elements
skins/styles/choc-shake/choc-shake.css CHANGED
@@ -5,8 +5,8 @@
5
  * Author URI: http://cf7skins.com
6
  * Description: This delicious style will work well with a range of different backgrounds, drawing in attention with its smooth and clean styling.
7
  * Instructions:
8
- * Version: 1.1
9
- * Version Date: 2015-05-20
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: brown, white, light
@@ -78,7 +78,7 @@ NOTE: These items should be used to style the overall CF7 form
78
  }
79
 
80
  .wpcf7 .cf7s-choc-shake fieldset fieldset {
81
- margin: 10px 0; /* Above CSS overwritten by cf7s-default */
82
  background: #ccb7a4;
83
  }
84
 
@@ -208,9 +208,6 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
208
  }
209
 
210
  .wpcf7 .cf7s-choc-shake .singleline li {
211
- display: inline-block;
212
- margin: 0 2% 0 0;
213
- width: 47%; /* CHANGE TO CALC */
214
  }
215
 
216
  .wpcf7 .cf7s-choc-shake .singleline input {
@@ -220,25 +217,49 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
220
  .wpcf7 .cf7s-choc-shake .radio-horizontal {
221
  }
222
 
223
- .wpcf7 .cf7s-choc-shake .boxaround {
 
 
 
 
 
 
 
224
  margin-bottom: 10px;
225
  padding: 10px;
226
  border: 1px solid #c9b3a0;
227
  background: #ccb7a4;
228
  }
229
 
230
- .wpcf7 .cf7s-choc-shake .boxaround1 {
231
  margin-bottom: 10px;
232
  padding: 10px;
233
  border: 1px solid #c9b3a0;
234
  background: #ccb7a4;
235
  }
236
 
237
- .wpcf7 .cf7s-choc-shake .boxaround select {
238
- }
239
-
240
- .wpcf7 .cf7s-choc-shake .boxaround1 select {
241
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
242
 
243
  /** Multi Styles
244
  NOTE: These styles provide styling for CF7 Skins Multi elements
5
  * Author URI: http://cf7skins.com
6
  * Description: This delicious style will work well with a range of different backgrounds, drawing in attention with its smooth and clean styling.
7
  * Instructions:
8
+ * Version: 1.2
9
+ * Version Date: 2015-09-02
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: brown, white, light
78
  }
79
 
80
  .wpcf7 .cf7s-choc-shake fieldset fieldset {
81
+ margin: 10px 0; /* Above CSS overwritten by cf7s-default */
82
  background: #ccb7a4;
83
  }
84
 
208
  }
209
 
210
  .wpcf7 .cf7s-choc-shake .singleline li {
 
 
 
211
  }
212
 
213
  .wpcf7 .cf7s-choc-shake .singleline input {
217
  .wpcf7 .cf7s-choc-shake .radio-horizontal {
218
  }
219
 
220
+ .wpcf7 .cf7s-choc-shake .box {
221
+ margin-bottom: 10px;
222
+ padding: 10px;
223
+ border: 1px solid #c9b3a0;
224
+ background: #ccb7a4;
225
+ }
226
+
227
+ .wpcf7 .cf7s-choc-shake .boxaround { /* DELETE */
228
  margin-bottom: 10px;
229
  padding: 10px;
230
  border: 1px solid #c9b3a0;
231
  background: #ccb7a4;
232
  }
233
 
234
+ .wpcf7 .cf7s-choc-shake .boxaround1 { /* DELETE */
235
  margin-bottom: 10px;
236
  padding: 10px;
237
  border: 1px solid #c9b3a0;
238
  background: #ccb7a4;
239
  }
240
 
241
+ .wpcf7 .cf7s-choc-shake .box select {
242
+ }
243
+
244
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-choc-shake .grid-hover [data-row-span] [data-field-span]:hover {
245
+ background: #fff7ef;
246
+ }
247
+
248
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-choc-shake .grid-lined {
249
+ border-top: 1px solid #c9b3a0;
250
+ }
251
+
252
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-choc-shake .grid-lined [data-row-span] {
253
+ border-bottom: 1px solid #c9b3a0;
254
+ }
255
+
256
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-choc-shake .grid-lined [data-row-span] [data-field-span] {
257
+ border-right: 1px solid #c9b3a0;
258
+ }
259
+
260
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-choc-shake .grid-lined [data-row-span] [data-field-span]:first-child {
261
+ border-left: 1px solid #c9b3a0;
262
+ }
263
 
264
  /** Multi Styles
265
  NOTE: These styles provide styling for CF7 Skins Multi elements
skins/styles/cotton-candy/cotton-candy.css CHANGED
@@ -5,8 +5,8 @@
5
  * Author URI: http://cf7skins.com
6
  * Description: Cotton Candy is a bright, eye-catching style that will stand out on your page with its bright and vibrant colors. This is a good style for any forms that need to stand out.
7
  * Instructions:
8
- * Version: 1.1
9
- * Version Date: 2015-05-20
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: aqua, pink, white, light
@@ -78,7 +78,7 @@ NOTE: These items should be used to style the overall CF7 Form
78
  }
79
 
80
  .wpcf7 .cf7s-cotton-candy fieldset fieldset {
81
- margin: 10px 0; /* Above CSS overwritten by cf7s-default */
82
  border: 1px solid #e9aefe;
83
  background: #f4d8ff;
84
  }
@@ -215,9 +215,6 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
215
  }
216
 
217
  .wpcf7 .cf7s-cotton-candy .singleline li {
218
- display: inline-block;
219
- margin: 0 2% 0 0;
220
- width: 47%; /* CHANGE TO CALC */
221
  }
222
 
223
  .wpcf7 .cf7s-cotton-candy .singleline input {
@@ -227,26 +224,56 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
227
  .wpcf7 .cf7s-cotton-candy .radio-horizontal {
228
  }
229
 
230
- .wpcf7 .cf7s-cotton-candy .boxaround {
 
 
 
 
 
 
231
  padding: 10px;
232
  border: 1px solid #eaafff;
233
  background: #f4d8ff;
234
  }
235
 
236
- .wpcf7 .cf7s-cotton-candy .boxaround1 {
237
  padding: 10px;
238
  border: 1px solid #eaafff;
239
  background: #f4d8ff;
240
  }
241
 
242
- .wpcf7 .cf7s-cotton-candy .boxaround select {
 
 
 
 
243
  border: 1px solid #f0b8ff;
244
  }
245
 
246
- .wpcf7 .cf7s-cotton-candy .boxaround1 select {
247
  border: 1px solid #f0b8ff;
248
  }
249
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
250
  /** Multi Styles
251
  NOTE: These styles provide styling for CF7 Skins Multi elements
252
  ------------------------------------------------------------ */
5
  * Author URI: http://cf7skins.com
6
  * Description: Cotton Candy is a bright, eye-catching style that will stand out on your page with its bright and vibrant colors. This is a good style for any forms that need to stand out.
7
  * Instructions:
8
+ * Version: 1.2
9
+ * Version Date: 2015-09-02
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: aqua, pink, white, light
78
  }
79
 
80
  .wpcf7 .cf7s-cotton-candy fieldset fieldset {
81
+ margin: 10px 0; /* Above CSS overwritten by cf7s-default */
82
  border: 1px solid #e9aefe;
83
  background: #f4d8ff;
84
  }
215
  }
216
 
217
  .wpcf7 .cf7s-cotton-candy .singleline li {
 
 
 
218
  }
219
 
220
  .wpcf7 .cf7s-cotton-candy .singleline input {
224
  .wpcf7 .cf7s-cotton-candy .radio-horizontal {
225
  }
226
 
227
+ .wpcf7 .cf7s-cotton-candy .box {
228
+ padding: 10px;
229
+ border: 1px solid #eaafff;
230
+ background: #f4d8ff;
231
+ }
232
+
233
+ .wpcf7 .cf7s-cotton-candy .boxaround { /* DELETE */
234
  padding: 10px;
235
  border: 1px solid #eaafff;
236
  background: #f4d8ff;
237
  }
238
 
239
+ .wpcf7 .cf7s-cotton-candy .boxaround1 { /* DELETE */
240
  padding: 10px;
241
  border: 1px solid #eaafff;
242
  background: #f4d8ff;
243
  }
244
 
245
+ .wpcf7 .cf7s-cotton-candy .boxselect {
246
+ border: 1px solid #f0b8ff;
247
+ }
248
+
249
+ .wpcf7 .cf7s-cotton-candy .boxaround select { /* DELETE */
250
  border: 1px solid #f0b8ff;
251
  }
252
 
253
+ .wpcf7 .cf7s-cotton-candy .boxaround1 select { /* DELETE */
254
  border: 1px solid #f0b8ff;
255
  }
256
 
257
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-cotton-candy .grid-hover [data-row-span] [data-field-span]:hover {
258
+ background: #f4d8ff;
259
+ }
260
+
261
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-cotton-candy .grid-lined {
262
+ border-top: 1px solid #eaafff;
263
+ }
264
+
265
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-cotton-candy .grid-lined [data-row-span] {
266
+ border-bottom: 1px solid #eaafff;
267
+ }
268
+
269
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-cotton-candy .grid-lined [data-row-span] [data-field-span] {
270
+ border-right: 1px solid #eaafff;
271
+ }
272
+
273
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-cotton-candy .grid-lined [data-row-span] [data-field-span]:first-child {
274
+ border-left: 1px solid #eaafff;
275
+ }
276
+
277
  /** Multi Styles
278
  NOTE: These styles provide styling for CF7 Skins Multi elements
279
  ------------------------------------------------------------ */
skins/styles/eggplant/eggplant.css CHANGED
@@ -5,8 +5,8 @@
5
  * Author URI: http://cf7skins.com
6
  * Description: Primarily white with a dash of purple, Eggplant will make an appealing addition to websites with a variety of themes. Its simplicity and white background makes this style a suitable option for many websites.
7
  * Instructions:
8
- * Version: 1.1
9
- * Version Date: 2015-05-20
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: white, pink, gray, light
@@ -78,7 +78,7 @@ NOTE: These items should be used to style the overall CF7 form
78
  }
79
 
80
  .wpcf7 .cf7s-eggplant fieldset fieldset {
81
- margin: 10px 0; /* Above CSS overwritten by cf7s-default */
82
  background: #f2f2f2;
83
  }
84
 
@@ -214,9 +214,6 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
214
  }
215
 
216
  .wpcf7 .cf7s-eggplant .singleline li {
217
- display: inline-block;
218
- margin: 0 2% 0 0;
219
- width: 47%; /* CHANGE TO CALC */
220
  }
221
 
222
  .wpcf7 .cf7s-eggplant .singleline input {
@@ -226,28 +223,59 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
226
  .wpcf7 .cf7s-eggplant .radio-horizontal {
227
  }
228
 
229
- .wpcf7 .cf7s-eggplant .boxaround {
 
 
 
 
 
 
 
230
  margin-bottom: 15px;
231
  padding: 10px;
232
  border: 2px solid #d056cd;
233
  background: #f2f2f2;
234
  }
235
 
236
- .wpcf7 .cf7s-eggplant .boxaround1 {
237
  margin-bottom: 15px;
238
  padding: 10px;
239
  border: 2px solid #d056cd;
240
  background: #f2f2f2;
241
  }
242
 
243
- .wpcf7 .cf7s-eggplant .boxaround select {
 
 
 
 
244
  background: #fff;
245
  }
246
 
247
- .wpcf7 .cf7s-eggplant .boxaround1 select {
248
  background: #fff;
249
  }
250
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
251
  /** Multi Styles
252
  NOTE: These styles provide styling for CF7 Skins Multi elements
253
  ------------------------------------------------------------ */
5
  * Author URI: http://cf7skins.com
6
  * Description: Primarily white with a dash of purple, Eggplant will make an appealing addition to websites with a variety of themes. Its simplicity and white background makes this style a suitable option for many websites.
7
  * Instructions:
8
+ * Version: 1.2
9
+ * Version Date: 2015-09-02
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: white, pink, gray, light
78
  }
79
 
80
  .wpcf7 .cf7s-eggplant fieldset fieldset {
81
+ margin: 10px 0; /* Above CSS overwritten by cf7s-default */
82
  background: #f2f2f2;
83
  }
84
 
214
  }
215
 
216
  .wpcf7 .cf7s-eggplant .singleline li {
 
 
 
217
  }
218
 
219
  .wpcf7 .cf7s-eggplant .singleline input {
223
  .wpcf7 .cf7s-eggplant .radio-horizontal {
224
  }
225
 
226
+ .wpcf7 .cf7s-eggplant .box {
227
+ margin-bottom: 15px;
228
+ padding: 10px;
229
+ border: 2px solid #d056cd;
230
+ background: #f2f2f2;
231
+ }
232
+
233
+ .wpcf7 .cf7s-eggplant .boxaround { /* DELETE */
234
  margin-bottom: 15px;
235
  padding: 10px;
236
  border: 2px solid #d056cd;
237
  background: #f2f2f2;
238
  }
239
 
240
+ .wpcf7 .cf7s-eggplant .boxaround1 { /* DELETE */
241
  margin-bottom: 15px;
242
  padding: 10px;
243
  border: 2px solid #d056cd;
244
  background: #f2f2f2;
245
  }
246
 
247
+ .wpcf7 .cf7s-eggplant .box select {
248
+ background: #fff;
249
+ }
250
+
251
+ .wpcf7 .cf7s-eggplant .boxaround select { /* DELETE */
252
  background: #fff;
253
  }
254
 
255
+ .wpcf7 .cf7s-eggplant .boxaround1 select { /* DELETE */
256
  background: #fff;
257
  }
258
 
259
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-eggplant .grid-hover [data-row-span] [data-field-span]:hover {
260
+ background: #ffefff;
261
+ }
262
+
263
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-eggplant .grid-lined {
264
+ border-top: 1px solid #d056cd;
265
+ }
266
+
267
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-eggplant .grid-lined [data-row-span] {
268
+ border-bottom: 1px solid #d056cd;
269
+ }
270
+
271
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-eggplant .grid-lined [data-row-span] [data-field-span] {
272
+ border-right: 1px solid #d056cd;
273
+ }
274
+
275
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-eggplant .grid-lined [data-row-span] [data-field-span]:first-child {
276
+ border-left: 1px solid #d056cd;
277
+ }
278
+
279
  /** Multi Styles
280
  NOTE: These styles provide styling for CF7 Skins Multi elements
281
  ------------------------------------------------------------ */
skins/styles/emerald/emerald.css CHANGED
@@ -5,8 +5,8 @@
5
  * Author URI: http://cf7skins.com
6
  * Description: Emerald is a deep green style with rich colors that will fit in with many themes which use deep or rich greens.
7
  * Instructions:
8
- * Version: 1.1
9
- * Version Date: 2015-06-30
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: green, white, dark
@@ -57,8 +57,8 @@ NOTE: These items should be used to style the overall CF7 form
57
  /** Fieldset, Legend, Label
58
  ------------------------------------------------------------ */
59
  .wpcf7 .cf7s-emerald fieldset {
60
- margin: 10px 0;
61
- padding: 10px 20px;
62
  color: #fff;
63
  border: 1px solid #488a6e;
64
  background: #488a6e;
@@ -79,7 +79,7 @@ NOTE: These items should be used to style the overall CF7 form
79
  }
80
 
81
  .wpcf7 .cf7s-emerald fieldset fieldset {
82
- margin: 10px 0;
83
  border: 1px solid #1e4d39;
84
  background: #1e4d39;
85
  }
@@ -200,7 +200,7 @@ NOTE: These are the CSS selectors that should be used style Submit Buttons withi
200
  }
201
 
202
  .wpcf7 .wpcf7-form.cf7skins.cf7s-emerald input[type="submit"]:hover {
203
- background: #000; /* WAS background: #488a6e; */
204
  }
205
 
206
  /** Special Classes
@@ -215,9 +215,6 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
215
  }
216
 
217
  .wpcf7 .cf7s-emerald .singleline li {
218
- display: inline-block;
219
- margin: 0 2% 0 0;
220
- width: 47%; /* CHANGE TO CALC */
221
  }
222
 
223
  .wpcf7 .cf7s-emerald .singleline input {
@@ -227,7 +224,15 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
227
  .wpcf7 .cf7s-emerald .radio-horizontal {
228
  }
229
 
230
- .wpcf7 .cf7s-emerald .boxaround {
 
 
 
 
 
 
 
 
231
  margin-bottom: 15px;
232
  padding: 10px;
233
  color: #fff;
@@ -235,7 +240,7 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
235
  background: #1e4d39;
236
  }
237
 
238
- .wpcf7 .cf7s-emerald .boxaround1 {
239
  margin-bottom: 15px;
240
  padding: 10px;
241
  color: #fff;
@@ -243,11 +248,29 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
243
  background: #1e4d39;
244
  }
245
 
246
- .wpcf7 .cf7s-emerald .boxaround select {
247
- }
248
-
249
- .wpcf7 .cf7s-emerald .boxaround1 select {
250
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
251
 
252
  /** Multi Styles
253
  NOTE: These styles provide styling for CF7 Skins Multi elements
5
  * Author URI: http://cf7skins.com
6
  * Description: Emerald is a deep green style with rich colors that will fit in with many themes which use deep or rich greens.
7
  * Instructions:
8
+ * Version: 1.2
9
+ * Version Date: 2015-09-02
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: green, white, dark
57
  /** Fieldset, Legend, Label
58
  ------------------------------------------------------------ */
59
  .wpcf7 .cf7s-emerald fieldset {
60
+ margin: 10px 0;
61
+ padding: 10px 20px;
62
  color: #fff;
63
  border: 1px solid #488a6e;
64
  background: #488a6e;
79
  }
80
 
81
  .wpcf7 .cf7s-emerald fieldset fieldset {
82
+ margin: 10px 0;
83
  border: 1px solid #1e4d39;
84
  background: #1e4d39;
85
  }
200
  }
201
 
202
  .wpcf7 .wpcf7-form.cf7skins.cf7s-emerald input[type="submit"]:hover {
203
+ background: #000;
204
  }
205
 
206
  /** Special Classes
215
  }
216
 
217
  .wpcf7 .cf7s-emerald .singleline li {
 
 
 
218
  }
219
 
220
  .wpcf7 .cf7s-emerald .singleline input {
224
  .wpcf7 .cf7s-emerald .radio-horizontal {
225
  }
226
 
227
+ .wpcf7 .cf7s-emerald .box{
228
+ margin-bottom: 15px;
229
+ padding: 10px;
230
+ color: #fff;
231
+ border: 1px solid #77ab94;
232
+ background: #1e4d39;
233
+ }
234
+
235
+ .wpcf7 .cf7s-emerald .boxaround { /* DELETE */
236
  margin-bottom: 15px;
237
  padding: 10px;
238
  color: #fff;
240
  background: #1e4d39;
241
  }
242
 
243
+ .wpcf7 .cf7s-emerald .boxaround1 { /* DELETE */
244
  margin-bottom: 15px;
245
  padding: 10px;
246
  color: #fff;
248
  background: #1e4d39;
249
  }
250
 
251
+ .wpcf7 .cf7s-emerald .box select {
252
+ }
253
+
254
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-emerald .grid-hover [data-row-span] [data-field-span]:hover {
255
+ color: #488a6e;
256
+ background: #fff;
257
+ }
258
+
259
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-emerald .grid-lined {
260
+ border-top: 1px solid #77ab94;
261
+ }
262
+
263
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-emerald .grid-lined [data-row-span] {
264
+ border-bottom: 1px solid #77ab94;
265
+ }
266
+
267
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-emerald .grid-lined [data-row-span] [data-field-span] {
268
+ border-right: 1px solid #77ab94;
269
+ }
270
+
271
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-emerald.grid-lined [data-row-span] [data-field-span]:first-child {
272
+ border-left: 1px solid #77ab94;
273
+ }
274
 
275
  /** Multi Styles
276
  NOTE: These styles provide styling for CF7 Skins Multi elements
skins/styles/magnum/magnum.css CHANGED
@@ -5,8 +5,8 @@
5
  * Author URI: http://cf7skins.com
6
  * Description: Magnum is bound to stand out with its stylish use of bright colors. While it will work best on pages with a similar color palette, it will also tie in well with many others due to its bright colors and detail.
7
  * Instructions:
8
- * Version: 1.1
9
- * Version Date: 2015-05-20
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: green, purple, white, light
@@ -84,7 +84,7 @@ NOTE: These items should be used to style the overall CF7 form
84
  }
85
 
86
  .wpcf7 .cf7s-magnum fieldset fieldset {
87
- margin: 10px 0; /* Above CSS overwritten by cf7s-default */
88
  background: #b1e8d7;
89
  color: #838ada;
90
  }
@@ -218,9 +218,6 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
218
  }
219
 
220
  .wpcf7 .cf7s-magnum .singleline li {
221
- display: inline-block;
222
- margin: 0 2% 0 0;
223
- width: 47%; /* CHANGE TO CALC */
224
  }
225
 
226
  .wpcf7 .cf7s-magnum .singleline input {
@@ -230,7 +227,15 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
230
  .wpcf7 .cf7s-magnum .radio-horizontal {
231
  }
232
 
233
- .wpcf7 .cf7s-magnum .boxaround {
 
 
 
 
 
 
 
 
234
  margin-bottom: 15px;
235
  padding: 10px;
236
  color: #838ada;
@@ -238,7 +243,7 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
238
  background: #b1e8d7;
239
  }
240
 
241
- .wpcf7 .cf7s-magnum .boxaround1 {
242
  margin-bottom: 15px;
243
  padding: 10px;
244
  color: #838ada;
@@ -246,12 +251,30 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
246
  background: #b1e8d7;
247
  }
248
 
249
- .wpcf7 .cf7s-magnum .boxaround select {
250
- }
251
-
252
- .wpcf7 .cf7s-magnum .boxaround1 select {
253
- }
254
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
255
  /** Multi Styles
256
  NOTE: These styles provide styling for CF7 Skins Multi elements
257
  ------------------------------------------------------------ */
5
  * Author URI: http://cf7skins.com
6
  * Description: Magnum is bound to stand out with its stylish use of bright colors. While it will work best on pages with a similar color palette, it will also tie in well with many others due to its bright colors and detail.
7
  * Instructions:
8
+ * Version: 1.2
9
+ * Version Date: 2015-09-02
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: green, purple, white, light
84
  }
85
 
86
  .wpcf7 .cf7s-magnum fieldset fieldset {
87
+ margin: 10px 0; /* Above CSS overwritten by cf7s-default */
88
  background: #b1e8d7;
89
  color: #838ada;
90
  }
218
  }
219
 
220
  .wpcf7 .cf7s-magnum .singleline li {
 
 
 
221
  }
222
 
223
  .wpcf7 .cf7s-magnum .singleline input {
227
  .wpcf7 .cf7s-magnum .radio-horizontal {
228
  }
229
 
230
+ .wpcf7 .cf7s-magnum .box{
231
+ margin-bottom: 15px;
232
+ padding: 10px;
233
+ color: #838ada;
234
+ border: none;
235
+ background: #b1e8d7;
236
+ }
237
+
238
+ .wpcf7 .cf7s-magnum .boxaround { /* DELETE */
239
  margin-bottom: 15px;
240
  padding: 10px;
241
  color: #838ada;
243
  background: #b1e8d7;
244
  }
245
 
246
+ .wpcf7 .cf7s-magnum .boxaround1 { /* DELETE */
247
  margin-bottom: 15px;
248
  padding: 10px;
249
  color: #838ada;
251
  background: #b1e8d7;
252
  }
253
 
254
+ .wpcf7 .cf7s-magnum .box select {
255
+ }
256
+
257
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-magnum .grid-hover [data-row-span] [data-field-span]:hover {
258
+ background: #dfe2ff;
259
+ color: #838ada;
260
+ }
261
+
262
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-magnum .grid-lined {
263
+ border-top: 1px solid #175f48;
264
+ }
265
+
266
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-magnum .grid-lined [data-row-span] {
267
+ border-bottom: 1px solid #175f48;
268
+ }
269
+
270
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-magnum .grid-lined [data-row-span] [data-field-span] {
271
+ border-right: 1px solid #175f48;
272
+ }
273
+
274
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-magnum .grid-lined [data-row-span] [data-field-span]:first-child {
275
+ border-left: 1px solid #175f48;
276
+ }
277
+
278
  /** Multi Styles
279
  NOTE: These styles provide styling for CF7 Skins Multi elements
280
  ------------------------------------------------------------ */
skins/styles/pina-colada/pina-colada.css CHANGED
@@ -5,8 +5,8 @@
5
  * Author URI: http://cf7skins.com
6
  * Description: Pina Colada is a simple yet attractive style that will blend in nicely with many themes. Its clean detailing and soft colors will add a smart and sophisticated appearance to your website forms.
7
  * Instructions:
8
- * Version: 1.1
9
- * Version Date: 2015-05-20
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: featured, red, brown, white, light
@@ -78,7 +78,7 @@ NOTE: These items should be used to style the overall CF7 form
78
  }
79
 
80
  .wpcf7 .cf7s-pina-colada fieldset fieldset {
81
- margin: 10px 0; /* Above CSS overwritten by cf7s-default */
82
  background: #fff;
83
  }
84
 
@@ -206,9 +206,6 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
206
  }
207
 
208
  .wpcf7 .cf7s-pina-colada .singleline li {
209
- display: inline-block;
210
- margin: 0 2% 0 0;
211
- width: 48%; /* CHANGE TO CALC */
212
  }
213
 
214
  .wpcf7 .cf7s-pina-colada .singleline input {
@@ -223,23 +220,46 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
223
  margin: 0 30px 0 0; /* provides space between radio options */
224
  }
225
 
226
- .wpcf7 .cf7s-pina-colada .boxaround {
 
 
 
 
 
 
227
  padding: 10px 20px;
228
  border: 1px solid #d7cfb9;
229
  background:#fff;
230
  }
231
 
232
- .wpcf7 .cf7s-pina-colada .boxaround1 {
233
  padding: 10px 20px;
234
  border: 1px solid #d7cfb9;
235
  background:#fff;
236
  }
237
 
238
- .wpcf7 .cf7s-pina-colada .boxaround select {
239
- }
 
 
 
 
240
 
241
- .wpcf7 .cf7s-pina-colada .boxaround1 select {
242
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
243
 
244
  /** Multi Styles
245
  NOTE: These styles provide styling for CF7 Skins Multi elements
5
  * Author URI: http://cf7skins.com
6
  * Description: Pina Colada is a simple yet attractive style that will blend in nicely with many themes. Its clean detailing and soft colors will add a smart and sophisticated appearance to your website forms.
7
  * Instructions:
8
+ * Version: 1.2
9
+ * Version Date: 2015-09-02
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: featured, red, brown, white, light
78
  }
79
 
80
  .wpcf7 .cf7s-pina-colada fieldset fieldset {
81
+ margin: 10px 0; /* Above CSS overwritten by cf7s-default */
82
  background: #fff;
83
  }
84
 
206
  }
207
 
208
  .wpcf7 .cf7s-pina-colada .singleline li {
 
 
 
209
  }
210
 
211
  .wpcf7 .cf7s-pina-colada .singleline input {
220
  margin: 0 30px 0 0; /* provides space between radio options */
221
  }
222
 
223
+ .wpcf7 .cf7s-pina-colada .box {
224
+ padding: 10px 20px;
225
+ border: 1px solid #d7cfb9;
226
+ background:#fff;
227
+ }
228
+
229
+ .wpcf7 .cf7s-pina-colada .boxaround { /* DELETE */
230
  padding: 10px 20px;
231
  border: 1px solid #d7cfb9;
232
  background:#fff;
233
  }
234
 
235
+ .wpcf7 .cf7s-pina-colada .boxaround1 { /* DELETE */
236
  padding: 10px 20px;
237
  border: 1px solid #d7cfb9;
238
  background:#fff;
239
  }
240
 
241
+ .wpcf7 .cf7s-pina-colada .box select {
242
+ }
243
+
244
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-pina-colada .grid-hover [data-row-span] [data-field-span]:hover {
245
+ background: #fffded;
246
+ }
247
 
248
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-pina-colada .grid-lined {
249
+ border-top: 1px solid #333333;
250
+ }
251
+
252
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-pina-colada .grid-lined [data-row-span] {
253
+ border-bottom: 1px solid #333333;
254
+ }
255
+
256
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-pina-colada .grid-lined [data-row-span] [data-field-span] {
257
+ border-right: 1px solid #333333;
258
+ }
259
+
260
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-pina-colada .grid-lined [data-row-span] [data-field-span]:first-child {
261
+ border-left: 1px solid #333333;
262
+ }
263
 
264
  /** Multi Styles
265
  NOTE: These styles provide styling for CF7 Skins Multi elements
skins/styles/seaspray/seaspray.css CHANGED
@@ -5,8 +5,8 @@
5
  * Author URI: http://cf7skins.com
6
  * Description: Seaspray is a bright eye-catching style that can stand out on your page with its interesting use of vibrant colors. Its eye-catching headers and stylish design will lift your forms out of the ordinary.
7
  * Instructions:
8
- * Version: 1.1
9
- * Version Date: 2015-06-30
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: green, white, gray, black, dark
@@ -49,7 +49,7 @@ NOTE: These items should be used to style the overall CF7 form
49
  ------------------------------------------------------------ */
50
  .wpcf7 .cf7s-seaspray {
51
  padding: 20px;
52
- color: #000;
53
  border: 1px solid #1c1c1c;
54
  background: #fff;
55
  }
@@ -57,8 +57,8 @@ NOTE: These items should be used to style the overall CF7 form
57
  /** Fieldset, Legend, Label
58
  ------------------------------------------------------------ */
59
  .wpcf7 .cf7s-seaspray fieldset {
60
- margin: 10px 0;
61
- padding: 10px 20px;
62
  border: 2px solid #1c1c1c;
63
  background: #fff;
64
  }
@@ -78,13 +78,12 @@ NOTE: These items should be used to style the overall CF7 form
78
  }
79
 
80
  .wpcf7 .cf7s-seaspray fieldset fieldset {
81
- margin: 10px 0;
82
  background: #56d0bb;
83
  }
84
 
85
  .wpcf7 .cf7s-seaspray fieldset fieldset legend {
86
  color: #56d0bb;
87
- /* border: 2px solid #1c1c1c; */
88
  background: #fff;
89
  }
90
 
@@ -208,9 +207,6 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
208
  }
209
 
210
  .wpcf7 .cf7s-seaspray .singleline li {
211
- display: inline-block;
212
- margin: 0 2% 0 0;
213
- width: 47%; /* CHANGE TO CALC */
214
  }
215
 
216
  .wpcf7 .cf7s-seaspray .singleline input {
@@ -220,14 +216,21 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
220
  .wpcf7 .cf7s-seaspray .radio-horizontal {
221
  }
222
 
223
- .wpcf7 .cf7s-seaspray .boxaround {
 
 
 
 
 
 
 
224
  margin-bottom: 15px;
225
  padding: 10px;
226
  border: 1px solid #1c1c1c;
227
  background: #56d0bb;
228
  }
229
 
230
- .wpcf7 .cf7s-seaspray .boxaround1 {
231
  margin-bottom: 15px;
232
  padding: 10px;
233
  border: 1px solid #1c1c1c;
@@ -240,6 +243,26 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
240
  .wpcf7 .cf7s-seaspray .boxaround1 select {
241
  }
242
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
243
  /** Multi Styles
244
  NOTE: These styles provide styling for CF7 Skins Multi elements
245
  ------------------------------------------------------------ */
5
  * Author URI: http://cf7skins.com
6
  * Description: Seaspray is a bright eye-catching style that can stand out on your page with its interesting use of vibrant colors. Its eye-catching headers and stylish design will lift your forms out of the ordinary.
7
  * Instructions:
8
+ * Version: 1.2
9
+ * Version Date: 2015-09-02
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: green, white, gray, black, dark
49
  ------------------------------------------------------------ */
50
  .wpcf7 .cf7s-seaspray {
51
  padding: 20px;
52
+ color: #000;
53
  border: 1px solid #1c1c1c;
54
  background: #fff;
55
  }
57
  /** Fieldset, Legend, Label
58
  ------------------------------------------------------------ */
59
  .wpcf7 .cf7s-seaspray fieldset {
60
+ margin: 10px 0;
61
+ padding: 10px 20px;
62
  border: 2px solid #1c1c1c;
63
  background: #fff;
64
  }
78
  }
79
 
80
  .wpcf7 .cf7s-seaspray fieldset fieldset {
81
+ margin: 10px 0;
82
  background: #56d0bb;
83
  }
84
 
85
  .wpcf7 .cf7s-seaspray fieldset fieldset legend {
86
  color: #56d0bb;
 
87
  background: #fff;
88
  }
89
 
207
  }
208
 
209
  .wpcf7 .cf7s-seaspray .singleline li {
 
 
 
210
  }
211
 
212
  .wpcf7 .cf7s-seaspray .singleline input {
216
  .wpcf7 .cf7s-seaspray .radio-horizontal {
217
  }
218
 
219
+ .wpcf7 .cf7s-seaspray .box {
220
+ margin-bottom: 15px;
221
+ padding: 10px;
222
+ border: 1px solid #1c1c1c;
223
+ background: #56d0bb;
224
+ }
225
+
226
+ .wpcf7 .cf7s-seaspray .boxaround { /* DELETE */
227
  margin-bottom: 15px;
228
  padding: 10px;
229
  border: 1px solid #1c1c1c;
230
  background: #56d0bb;
231
  }
232
 
233
+ .wpcf7 .cf7s-seaspray .boxaround1 { /* DELETE */
234
  margin-bottom: 15px;
235
  padding: 10px;
236
  border: 1px solid #1c1c1c;
243
  .wpcf7 .cf7s-seaspray .boxaround1 select {
244
  }
245
 
246
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-seaspray .grid-hover [data-row-span] [data-field-span]:hover {
247
+ background: #effffc;
248
+ }
249
+
250
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-seaspray .grid-lined {
251
+ border-top: 1px solid #333333;
252
+ }
253
+
254
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-seaspray .grid-lined [data-row-span] {
255
+ border-bottom: 1px solid #333333;
256
+ }
257
+
258
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-seaspray .grid-lined [data-row-span] [data-field-span] {
259
+ border-right: 1px solid #333333;
260
+ }
261
+
262
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-seaspray .grid-lined [data-row-span] [data-field-span]:first-child {
263
+ border-left: 1px solid #333333;
264
+ }
265
+
266
  /** Multi Styles
267
  NOTE: These styles provide styling for CF7 Skins Multi elements
268
  ------------------------------------------------------------ */
skins/styles/topaz/topaz.css CHANGED
@@ -5,9 +5,9 @@
5
  * Author URI: http://cf7skins.com
6
  * Description: Topaz is a smart orange style, with subtle color variations, that will work well with themes that follow a similar color scheme.
7
  * Instructions:
8
- * Instructions:
9
- * Version: 1.1
10
- * Version Date: 2015-05-20
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: yellow, orange, white, light
13
  */
@@ -78,7 +78,7 @@ NOTE: These items should be used to style the overall CF7 form
78
  }
79
 
80
  .wpcf7 .cf7s-topaz fieldset fieldset {
81
- margin: 10px 0; /* Above CSS overwritten by cf7s-default */
82
  }
83
 
84
  .wpcf7 .cf7s-topaz fieldset fieldset legend {
@@ -207,9 +207,6 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
207
  }
208
 
209
  .wpcf7 .cf7s-topaz .singleline li {
210
- display: inline-block;
211
- margin: 0 2% 0 0;
212
- width: 47%; /* CHANGE TO CALC */
213
  }
214
 
215
  .wpcf7 .cf7s-topaz .singleline input {
@@ -219,23 +216,46 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
219
  .wpcf7 .cf7s-topaz .radio-horizontal {
220
  }
221
 
222
- .wpcf7 .cf7s-topaz .boxaround {
 
 
 
 
 
 
223
  padding: 10px;
224
  border: 1px solid #dec07a;
225
  background: #f9db9d;
226
  }
227
 
228
- .wpcf7 .cf7s-topaz .boxaround1 {
229
  padding: 10px;
230
  border: 1px solid #dec07a;
231
  background: #f9db9d;
232
  }
233
 
234
- .wpcf7 .cf7s-topaz .boxaround select {
235
- }
 
 
 
 
236
 
237
- .wpcf7 .cf7s-topaz .boxaround1 select {
238
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
239
 
240
  /** Multi Styles
241
  NOTE: These styles provide styling for CF7 Skins Multi elements
5
  * Author URI: http://cf7skins.com
6
  * Description: Topaz is a smart orange style, with subtle color variations, that will work well with themes that follow a similar color scheme.
7
  * Instructions:
8
+ * Version: 1.2
9
+ * Version Date: 2015-09-02
10
+ * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: yellow, orange, white, light
13
  */
78
  }
79
 
80
  .wpcf7 .cf7s-topaz fieldset fieldset {
81
+ margin: 10px 0; /* Above CSS overwritten by cf7s-default */
82
  }
83
 
84
  .wpcf7 .cf7s-topaz fieldset fieldset legend {
207
  }
208
 
209
  .wpcf7 .cf7s-topaz .singleline li {
 
 
 
210
  }
211
 
212
  .wpcf7 .cf7s-topaz .singleline input {
216
  .wpcf7 .cf7s-topaz .radio-horizontal {
217
  }
218
 
219
+ .wpcf7 .cf7s-topaz .box {
220
+ padding: 10px;
221
+ border: 1px solid #dec07a;
222
+ background: #f9db9d;
223
+ }
224
+
225
+ .wpcf7 .cf7s-topaz .boxaround { /* DELETE */
226
  padding: 10px;
227
  border: 1px solid #dec07a;
228
  background: #f9db9d;
229
  }
230
 
231
+ .wpcf7 .cf7s-topaz .boxaround1 { /* DELETE */
232
  padding: 10px;
233
  border: 1px solid #dec07a;
234
  background: #f9db9d;
235
  }
236
 
237
+ .wpcf7 .cf7s-topaz .box select {
238
+ }
239
+
240
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-topaz .grid-hover [data-row-span] [data-field-span]:hover {
241
+ background: #fffded;
242
+ }
243
 
244
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-topaz .grid-lined {
245
+ border-top: 1px solid #dec07a;
246
+ }
247
+
248
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-topaz .grid-lined [data-row-span] {
249
+ border-bottom: 1px solid #dec07a;
250
+ }
251
+
252
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-topaz .grid-lined [data-row-span] [data-field-span] {
253
+ border-right: 1px solid #dec07a;
254
+ }
255
+
256
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-topaz .grid-lined [data-row-span] [data-field-span]:first-child {
257
+ border-left: 1px solid #dec07a;
258
+ }
259
 
260
  /** Multi Styles
261
  NOTE: These styles provide styling for CF7 Skins Multi elements
skins/styles/vanilla/vanilla.css CHANGED
@@ -5,8 +5,8 @@
5
  * Author URI: http://cf7skins.com
6
  * Description: Vanilla is bright style that uses its soft background and strong labels to draw attention and is well suited for use with a wide range of themes.
7
  * Instructions:
8
- * Version: 1.1
9
- * Version Date: 2015-05-20
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: yellow, white, red, light
@@ -77,7 +77,7 @@ NOTE: These items should be used to style the overall CF7 form
77
  }
78
 
79
  .wpcf7 .cf7s-vanilla fieldset fieldset {
80
- margin: 10px 0; /* Above CSS overwritten by cf7s-default */
81
  background: #fff;
82
  }
83
 
@@ -208,9 +208,6 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
208
  }
209
 
210
  .wpcf7 .cf7s-vanilla .singleline li {
211
- display: inline-block;
212
- margin: 0 2% 0 0;
213
- width: 47%; /* CHANGE TO CALC */
214
  }
215
 
216
  .wpcf7 .cf7s-vanilla .singleline input {
@@ -220,25 +217,49 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
220
  .wpcf7 .cf7s-vanilla .radio-horizontal {
221
  }
222
 
223
- .wpcf7 .cf7s-vanilla .boxaround {
 
 
 
 
 
 
 
224
  margin-bottom: 15px;
225
  padding: 10px;
226
  background: #fff;
227
  border: 1px solid #a3a3a3;
228
  }
229
 
230
- .wpcf7 .cf7s-vanilla .boxaround1 {
231
  margin-bottom: 15px;
232
  padding: 10px;
233
  background: #fff;
234
  border: 1px solid #a3a3a3;
235
  }
236
 
237
- .wpcf7 .cf7s-vanilla .boxaround select {
238
- }
239
-
240
- .wpcf7 .cf7s-vanilla .boxaround1 select {
241
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
242
 
243
  /** Multi Styles
244
  NOTE: These styles provide styling for CF7 Skins Multi elements
5
  * Author URI: http://cf7skins.com
6
  * Description: Vanilla is bright style that uses its soft background and strong labels to draw attention and is well suited for use with a wide range of themes.
7
  * Instructions:
8
+ * Version: 1.2
9
+ * Version Date: 2015-09-02
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: yellow, white, red, light
77
  }
78
 
79
  .wpcf7 .cf7s-vanilla fieldset fieldset {
80
+ margin: 10px 0; /* Above CSS overwritten by cf7s-default */
81
  background: #fff;
82
  }
83
 
208
  }
209
 
210
  .wpcf7 .cf7s-vanilla .singleline li {
 
 
 
211
  }
212
 
213
  .wpcf7 .cf7s-vanilla .singleline input {
217
  .wpcf7 .cf7s-vanilla .radio-horizontal {
218
  }
219
 
220
+ .wpcf7 .cf7s-vanilla .box {
221
+ margin-bottom: 15px;
222
+ padding: 10px;
223
+ background: #fff;
224
+ border: 1px solid #a3a3a3;
225
+ }
226
+
227
+ .wpcf7 .cf7s-vanilla .boxaround { /* DELETE */
228
  margin-bottom: 15px;
229
  padding: 10px;
230
  background: #fff;
231
  border: 1px solid #a3a3a3;
232
  }
233
 
234
+ .wpcf7 .cf7s-vanilla .boxaround1 { /* DELETE */
235
  margin-bottom: 15px;
236
  padding: 10px;
237
  background: #fff;
238
  border: 1px solid #a3a3a3;
239
  }
240
 
241
+ .wpcf7 .cf7s-vanilla .box select {
242
+ }
243
+
244
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-vanilla .grid-hover [data-row-span] [data-field-span]:hover {
245
+ background: #fffded;
246
+ }
247
+
248
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-vanilla .grid-lined {
249
+ border-top: 1px solid #a3a3a3;
250
+ }
251
+
252
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-vanilla .grid-lined [data-row-span] {
253
+ border-bottom: 1px solid #a3a3a3;
254
+ }
255
+
256
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-vanilla .grid-lined [data-row-span] [data-field-span] {
257
+ border-right: 1px solid #a3a3a3;
258
+ }
259
+
260
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-vanilla .grid-lined [data-row-span] [data-field-span]:first-child {
261
+ border-left: 1px solid #a3a3a3;
262
+ }
263
 
264
  /** Multi Styles
265
  NOTE: These styles provide styling for CF7 Skins Multi elements
skins/styles/wild-west/wild-west.css CHANGED
@@ -5,8 +5,8 @@
5
  * Author URI: http://cf7skins.com
6
  * Description: Wild West is a soft brown style with rounded edges and strong Legends that will fit in well with themes that follow a similar color scheme.
7
  * Instructions:
8
- * Version: 1.1
9
- * Version Date: 2015-05-20
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: popular, brown, white, light
@@ -61,7 +61,7 @@ NOTE: These items should be used to style the overall CF7 form
61
  margin: 10px 0;
62
  border: 3px solid #ccb58c;
63
  border-radius: 7px; /** Not working in IE **/
64
- background: #dcc8a5;
65
  }
66
 
67
  .wpcf7 .cf7s-wild-west legend {
@@ -80,7 +80,7 @@ NOTE: These items should be used to style the overall CF7 form
80
  }
81
 
82
  .wpcf7 .cf7s-wild-west fieldset fieldset {
83
- margin: 10px 0; /* Above CSS overwritten by cf7s-default */
84
  }
85
 
86
  .wpcf7 .cf7s-wild-west fieldset fieldset legend {
@@ -206,9 +206,6 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
206
  }
207
 
208
  .wpcf7 .cf7s-wild-west .singleline li {
209
- display: inline-block;
210
- margin: 0 2% 0 0;
211
- width: 47%; /* CHANGE TO CALC */
212
  }
213
 
214
  .wpcf7 .cf7s-wild-west .singleline input {
@@ -218,25 +215,53 @@ NOTE: Ready Styles are provided ready to be used in all CF7 forms
218
  .wpcf7 .cf7s-wild-west .radio-horizontal {
219
  }
220
 
221
- .wpcf7 .cf7s-wild-west .boxaround {
 
 
 
 
 
 
 
222
  padding: 10px;
223
- border: 3px solid #ccb58c;
224
  border-radius:7px;
225
  background: #f6efdf;
226
  }
227
 
228
- .wpcf7 .cf7s-wild-west .boxaround1 {
229
  padding: 10px;
230
- border: 3px solid #ccb58c;
231
  border-radius:7px;
232
  background: #f6efdf;
233
  }
234
 
235
- .wpcf7 .cf7s-wild-west .boxaround select {
236
- }
237
-
238
- .wpcf7 .cf7s-wild-west .boxaround1 select {
239
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
240
 
241
  /** Multi Styles
242
  NOTE: These styles provide styling for CF7 Skins Multi elements
5
  * Author URI: http://cf7skins.com
6
  * Description: Wild West is a soft brown style with rounded edges and strong Legends that will fit in well with themes that follow a similar color scheme.
7
  * Instructions:
8
+ * Version: 1.2
9
+ * Version Date: 2015-09-02
10
  * License: GNU General Public License v2 or later
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Tags: popular, brown, white, light
61
  margin: 10px 0;
62
  border: 3px solid #ccb58c;
63
  border-radius: 7px; /** Not working in IE **/
64
+ background: #dcc8a5;
65
  }
66
 
67
  .wpcf7 .cf7s-wild-west legend {
80
  }
81
 
82
  .wpcf7 .cf7s-wild-west fieldset fieldset {
83
+ margin: 10px 0; /* Above CSS overwritten by cf7s-default */
84
  }
85
 
86
  .wpcf7 .cf7s-wild-west fieldset fieldset legend {
206
  }
207
 
208
  .wpcf7 .cf7s-wild-west .singleline li {
 
 
 
209
  }
210
 
211
  .wpcf7 .cf7s-wild-west .singleline input {
215
  .wpcf7 .cf7s-wild-west .radio-horizontal {
216
  }
217
 
218
+ .wpcf7 .cf7s-wild-west .box {
219
+ padding: 10px;
220
+ border: 3px solid #ccb58c;
221
+ border-radius:7px;
222
+ background: #f6efdf;
223
+ }
224
+
225
+ .wpcf7 .cf7s-wild-west .boxaround { /* DELETE */
226
  padding: 10px;
227
+ border: 3px solid #ccb58c;
228
  border-radius:7px;
229
  background: #f6efdf;
230
  }
231
 
232
+ .wpcf7 .cf7s-wild-west .boxaround1 { /* DELETE */
233
  padding: 10px;
234
+ border: 3px solid #ccb58c;
235
  border-radius:7px;
236
  background: #f6efdf;
237
  }
238
 
239
+ .wpcf7 .cf7s-wild-west .box select {
240
+ }
241
+
242
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-wild-west .grid-hover [data-row-span] [data-field-span]:hover {
243
+ background: #fffded;
244
+ }
245
+
246
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-wild-west .grid-lined {
247
+ border-top: 2px solid #ccb58c;
248
+ border-radius:7px;
249
+ }
250
+
251
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-wild-west .grid-lined [data-row-span] {
252
+ border-bottom: 2px solid #ccb58c;
253
+ border-radius:7px;
254
+ }
255
+
256
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-wild-west .grid-lined [data-row-span] [data-field-span] {
257
+ border-right: 2px solid #ccb58c;
258
+ border-radius:7px;
259
+ }
260
+
261
+ .wpcf7 .wpcf7-form.cf7skins.cf7s-wild-west .grid-lined [data-row-span] [data-field-span]:first-child {
262
+ border-left: 2px solid #ccb58c;
263
+ border-radius:7px;
264
+ }
265
 
266
  /** Multi Styles
267
  NOTE: These styles provide styling for CF7 Skins Multi elements
skins/templates/contact/contact.php CHANGED
@@ -6,8 +6,8 @@
6
  * Author URI: http://cf7skins.com
7
  * Description:
8
  * Instructions:
9
- * Version: 0.4
10
- * Version Date: 2014-11-07
11
  * License: GNU General Public License v2 or later
12
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
  * Tags: popular, contact
@@ -15,13 +15,13 @@
15
  **/
16
  ?>
17
  <fieldset>
18
- <legend><?php _e( 'Contact Form','cf7skins'); ?></legend>
19
- <ol>
20
- <li> <?php _e( 'Your Name (required)', 'cf7skins' ); ?> [text* cf7s-name]</li>
21
- <li> <?php _e( 'Email Address (required)', 'cf7skins' ); ?> [email* cf7s-email-address]</li>
22
- <li> <?php _e( 'Your Message', 'cf7skins' ); ?> [textarea cf7s-message]</li>
23
- </ol>
24
- [submit "<?php _e( 'Submit', 'cf7skins'); ?>"]
25
- <p>* <?php _e( 'Required', 'cf7skins' ); ?></p>
26
  </fieldset>
27
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum tempus pharetra vehicula. Aliquam pellentesque mi non scelerisque placerat.</p>
6
  * Author URI: http://cf7skins.com
7
  * Description:
8
  * Instructions:
9
+ * Version: 1.0
10
+ * Version Date: 2015-08-28
11
  * License: GNU General Public License v2 or later
12
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
  * Tags: popular, contact
15
  **/
16
  ?>
17
  <fieldset>
18
+ <legend><?php _e( 'Contact Form','cf7skins'); ?></legend>
19
+ <ol>
20
+ <li> <?php _e( 'Your Name (required)', 'cf7skins' ); ?> [text* cf7s-name] </li>
21
+ <li> <?php _e( 'Email Address (required)', 'cf7skins' ); ?> [email* cf7s-email-address] </li>
22
+ <li> <?php _e( 'Your Message', 'cf7skins' ); ?> [textarea cf7s-message] </li>
23
+ </ol>
24
+ [submit "<?php _e( 'Submit', 'cf7skins'); ?>"]
25
+ <p>* <?php _e( 'Required', 'cf7skins' ); ?></p>
26
  </fieldset>
27
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum tempus pharetra vehicula. Aliquam pellentesque mi non scelerisque placerat.</p>
skins/templates/default/default-cf7-form.php CHANGED
@@ -4,11 +4,11 @@
4
  * Template URI: http://
5
  * Author: Neil Murray
6
  * Author URI: http://cf7skins.com
7
- * Description: The Default CF7 Form is a minimalistic contact form without any of the CF7 Skins structure applied. It is simple, straightforward, and will blend in with most plain pages. <br><br> Included in this template are the following fields: <br>• Name <br>• Email address <br>• Subject <br>• Message area that can be expanded for long messages<br>• Submit button <br><br> You can copy, add, remove and alter fields, text, titles and fieldsets and more to customize the form to suit your needs.
8
  * Instructions:
9
 
10
- * Version: 0.2
11
- * Version Date: 2013-07-01
12
  * License: GNU General Public License v2 or later
13
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
14
  * Tags:
4
  * Template URI: http://
5
  * Author: Neil Murray
6
  * Author URI: http://cf7skins.com
7
+ * Description: The default Contact Form 7 form is a minimalistic contact form without any of the CF7 Skins structure applied. It is simple, straightforward, and will blend in with most plain pages. <br><br> <strong>Note:</strong> This template is based around paragraph &lt;p&gt; elements as used in the default Contact Form 7 form. Other CF7 Skins templates use <a href="http://kb.cf7skins.com/why-we-use-fieldset-legend-lists-in-cf7-skins/">Fieldset, Legend & Lists</a>. <br><br> Included in this template are the following fields: <br>• Name <br>• Email address <br>• Subject <br>• Message area that can be expanded for long messages<br>• Submit button <br><br> You can copy, add, remove and alter fields, text, titles and fieldsets and more to customize the form to suit your needs.
8
  * Instructions:
9
 
10
+ * Version: 1.0
11
+ * Version Date: 2015-08-28
12
  * License: GNU General Public License v2 or later
13
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
14
  * Tags:
skins/templates/event/event.php CHANGED
@@ -6,8 +6,8 @@
6
  * Author URI: http://cf7skins.com
7
  * Description:
8
  * Instructions:
9
- * Version: 0.4
10
- * Version Date: 2014-11-07
11
  * License: GNU General Public License v2 or later
12
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
  * Tags: featured, event
@@ -15,17 +15,17 @@
15
  **/
16
  ?>
17
  <fieldset>
18
- <legend><?php _e( 'Event', 'cf7skins'); ?></legend>
19
- <ol>
20
- <li> <?php _e( 'Name', 'cf7skins'); ?> [text cf7s-name]</li>
21
- <li> <?php _e( 'Phone Number', 'cf7skins'); ?> [tel cf7s-phone]</li>
22
- <li> <?php _e( 'Email', 'cf7skins'); ?> [email* cf7s-email]</li>
23
- <li> <?php _e( 'Which workshops will you be attending?', 'cf7skins' ); ?> [checkbox cf7s-checkbox1 "<?php _e( 'Option 1', 'cf7skins' ); ?>" "<?php _e( 'Option 2', 'cf7skins' ); ?>" "<?php _e( 'Option 3', 'cf7skins' ); ?>"] </li>
24
- <li> <?php _e( 'Are you an existing customer?', 'cf7skins' ); ?> [radio cf7s-radio1 "<?php _e( 'Yes', 'cf7skins' ); ?>" "<?php _e( 'No', 'cf7skins' ); ?>"] </li>
25
- <li> <?php _e( 'How did find out about this event?', 'cf7skins'); ?> [select cf7s-select1 "<?php _e( 'Option 1', 'cf7skins' ); ?>" "<?php _e( 'Option 2', 'cf7skins' ); ?>" "<?php _e( 'Option 3', 'cf7skins' ); ?>"] </li>
26
- <li> <?php _e( 'Comments or Questions', 'cf7skins'); ?> [textarea cf7s-comments]</li>
27
- </ol>
28
- [submit "<?php _e( 'Submit', 'cf7skins'); ?>"]
29
- <p>* <?php _e( 'Required', 'cf7skins' ); ?></p>
30
  </fieldset>
31
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum tempus pharetra vehicula. Aliquam pellentesque mi non scelerisque placerat.</p>
6
  * Author URI: http://cf7skins.com
7
  * Description:
8
  * Instructions:
9
+ * Version: 1.0
10
+ * Version Date: 2015-08-28
11
  * License: GNU General Public License v2 or later
12
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
  * Tags: featured, event
15
  **/
16
  ?>
17
  <fieldset>
18
+ <legend><?php _e( 'Event', 'cf7skins'); ?></legend>
19
+ <ol>
20
+ <li> <?php _e( 'Name', 'cf7skins'); ?> [text cf7s-name] </li>
21
+ <li> <?php _e( 'Phone Number', 'cf7skins'); ?> [tel cf7s-phone] </li>
22
+ <li> <?php _e( 'Email', 'cf7skins'); ?> [email* cf7s-email] </li>
23
+ <li> <?php _e( 'Which workshops will you be attending?', 'cf7skins' ); ?> [checkbox cf7s-checkbox1 "<?php _e( 'Option 1', 'cf7skins' ); ?>" "<?php _e( 'Option 2', 'cf7skins' ); ?>" "<?php _e( 'Option 3', 'cf7skins' ); ?>"] </li>
24
+ <li> <?php _e( 'Are you an existing customer?', 'cf7skins' ); ?> [radio cf7s-radio1 "<?php _e( 'Yes', 'cf7skins' ); ?>" "<?php _e( 'No', 'cf7skins' ); ?>"] </li>
25
+ <li> <?php _e( 'How did find out about this event?', 'cf7skins'); ?> [select cf7s-select1 "<?php _e( 'Option 1', 'cf7skins' ); ?>" "<?php _e( 'Option 2', 'cf7skins' ); ?>" "<?php _e( 'Option 3', 'cf7skins' ); ?>"] </li>
26
+ <li> <?php _e( 'Comments or Questions', 'cf7skins'); ?> [textarea cf7s-comments] </li>
27
+ </ol>
28
+ [submit "<?php _e( 'Submit', 'cf7skins'); ?>"]
29
+ <p>* <?php _e( 'Required', 'cf7skins' ); ?></p>
30
  </fieldset>
31
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum tempus pharetra vehicula. Aliquam pellentesque mi non scelerisque placerat.</p>
skins/templates/fieldset-basic/fieldset-basic.php CHANGED
@@ -6,8 +6,8 @@
6
  * Author URI: http://cf7skins.com
7
  * Description:
8
  * Instructions:
9
- * Version: 0.3
10
- * Version Date: 2014-11-11
11
  * License: GNU General Public License v2 or later
12
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
  * Tags: popular, featured, fieldset
@@ -17,12 +17,12 @@
17
  <fieldset>
18
  <legend><?php _e( 'Your Details', 'cf7skins'); ?></legend>
19
  <ol>
20
- <li><?php _e( 'Name', 'cf7skins'); ?> [text cf7s-name]</li>
21
- <li><?php _e( 'Email', 'cf7skins'); ?> [email* cf7s-email]</li>
22
- <li><?php _e( 'Phone', 'cf7skins'); ?> [text cf7s-phone]</li>
23
- <li> <?php _e( 'Message', 'cf7skins' ); ?> [textarea cf7s-message]</li>
24
  </ol>
25
- [submit "<?php _e( 'Submit', 'cf7skins'); ?>"]
26
- <p>* <?php _e( 'Required', 'cf7skins' ); ?></p>
27
  </fieldset>
28
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum tempus pharetra vehicula. Aliquam pellentesque mi non scelerisque placerat.</p>
6
  * Author URI: http://cf7skins.com
7
  * Description:
8
  * Instructions:
9
+ * Version: 1.0
10
+ * Version Date: 2015-08-28
11
  * License: GNU General Public License v2 or later
12
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
  * Tags: popular, featured, fieldset
17
  <fieldset>
18
  <legend><?php _e( 'Your Details', 'cf7skins'); ?></legend>
19
  <ol>
20
+ <li> <?php _e( 'Name', 'cf7skins'); ?> [text cf7s-name] </li>
21
+ <li> <?php _e( 'Email', 'cf7skins'); ?> [email* cf7s-email] </li>
22
+ <li> <?php _e( 'Phone', 'cf7skins'); ?> [text cf7s-phone] </li>
23
+ <li> <?php _e( 'Message', 'cf7skins' ); ?> [textarea cf7s-message] </li>
24
  </ol>
25
+ [submit "<?php _e( 'Submit', 'cf7skins'); ?>"]
26
+ <p>* <?php _e( 'Required', 'cf7skins' ); ?></p>
27
  </fieldset>
28
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum tempus pharetra vehicula. Aliquam pellentesque mi non scelerisque placerat.</p>
skins/templates/fieldset-in-fieldset/fieldset-in-fieldset.php CHANGED
@@ -6,32 +6,32 @@
6
  * Author URI: http://cf7skins.com
7
  * Description:
8
  * Instructions:
9
- * Version: 0.1
10
- * Version Date: 2014-07-01
11
  * License: GNU General Public License v2 or later
12
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
- * Tags:
14
  * Text Domain:
15
  **/
16
  ?>
17
  <fieldset>
18
  <legend><?php _e( 'Your Details', 'cf7skins'); ?></legend>
19
  <ol>
20
- <li><?php _e( 'Name', 'cf7skins'); ?> [text cf7s-name]</li>
21
- <li><?php _e( 'Email', 'cf7skins'); ?> [email* cf7s-email]</li>
22
- <li><?php _e( 'Phone', 'cf7skins'); ?> [text cf7s-phone]</li>
23
- <li> <?php _e( 'Message', 'cf7skins' ); ?> [textarea cf7s-message]</li>
24
  </ol>
25
  <p>Use paragraphs for text that is not a form field.</p>
26
  <fieldset>
27
  <legend><?php _e( 'Your Requirements', 'cf7skins'); ?></legend>
28
  <ol>
29
- <li><?php _e( 'Checkboxes', 'cf7skins'); ?> [checkbox cf7s-checkbox-01 "<?php _e( 'Option 1', 'cf7skins' ); ?>" "<?php _e( 'Option 2', 'cf7skins' ); ?>" "<?php _e( 'Option 3', 'cf7skins' ); ?>"]</li>
30
- <li><?php _e( 'Radio Buttons', 'cf7skins'); ?> [radio cf7s-radio-01 "<?php _e( 'Yes', 'cf7skins' ); ?>" "<?php _e( 'No', 'cf7skins' ); ?>"]</li>
31
- <li><?php _e( 'Dropdown Select', 'cf7skins'); ?> [select cf7s-select-01 "<?php _e( 'Item 1', 'cf7skins' ); ?>" "<?php _e( 'Item 2', 'cf7skins' ); ?>" "<?php _e( 'Item 3', 'cf7skins' ); ?>"]</li>
32
  </ol>
33
  </fieldset>
34
- [submit "<?php _e( 'Submit', 'cf7skins'); ?>"]
35
- <p>* <?php _e( 'Required', 'cf7skins' ); ?></p>
36
  </fieldset>
37
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum tempus pharetra vehicula. Aliquam pellentesque mi non scelerisque placerat.</p>
6
  * Author URI: http://cf7skins.com
7
  * Description:
8
  * Instructions:
9
+ * Version: 1.0
10
+ * Version Date: 2015-08-28
11
  * License: GNU General Public License v2 or later
12
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
+ * Tags: fieldset
14
  * Text Domain:
15
  **/
16
  ?>
17
  <fieldset>
18
  <legend><?php _e( 'Your Details', 'cf7skins'); ?></legend>
19
  <ol>
20
+ <li> <?php _e( 'Name', 'cf7skins'); ?> [text cf7s-name] </li>
21
+ <li> <?php _e( 'Email', 'cf7skins'); ?> [email* cf7s-email] </li>
22
+ <li> <?php _e( 'Phone', 'cf7skins'); ?> [text cf7s-phone] </li>
23
+ <li> <?php _e( 'Message', 'cf7skins' ); ?> [textarea cf7s-message] </li>
24
  </ol>
25
  <p>Use paragraphs for text that is not a form field.</p>
26
  <fieldset>
27
  <legend><?php _e( 'Your Requirements', 'cf7skins'); ?></legend>
28
  <ol>
29
+ <li> <?php _e( 'Checkboxes', 'cf7skins'); ?> [checkbox cf7s-checkbox-01 "<?php _e( 'Option 1', 'cf7skins' ); ?>" "<?php _e( 'Option 2', 'cf7skins' ); ?>" "<?php _e( 'Option 3', 'cf7skins' ); ?>"] </li>
30
+ <li> <?php _e( 'Radio Buttons', 'cf7skins'); ?> [radio cf7s-radio-01 "<?php _e( 'Yes', 'cf7skins' ); ?>" "<?php _e( 'No', 'cf7skins' ); ?>"] </li>
31
+ <li> <?php _e( 'Dropdown Select', 'cf7skins'); ?> [select cf7s-select-01 "<?php _e( 'Item 1', 'cf7skins' ); ?>" "<?php _e( 'Item 2', 'cf7skins' ); ?>" "<?php _e( 'Item 3', 'cf7skins' ); ?>"] </li>
32
  </ol>
33
  </fieldset>
34
+ [submit "<?php _e( 'Submit', 'cf7skins'); ?>"]
35
+ <p>* <?php _e( 'Required', 'cf7skins' ); ?></p>
36
  </fieldset>
37
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum tempus pharetra vehicula. Aliquam pellentesque mi non scelerisque placerat.</p>
skins/templates/fieldset-multiple/fieldset-multiple.php CHANGED
@@ -6,30 +6,30 @@
6
  * Author URI: http://cf7skins.com
7
  * Description:
8
  * Instructions:
9
- * Version: 0.1
10
- * Version Date: 2014-07-01
11
  * License: GNU General Public License v2 or later
12
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
- * Tags:
14
  * Text Domain:
15
  **/
16
  ?>
17
  <fieldset>
18
  <legend><?php _e( 'Your Details', 'cf7skins'); ?></legend>
19
  <ol>
20
- <li><?php _e( 'Name', 'cf7skins'); ?> [text cf7s-name]</li>
21
- <li><?php _e( 'Email', 'cf7skins'); ?> [email* cf7s-email]</li>
22
- <li><?php _e( 'Phone', 'cf7skins'); ?> [text cf7s-phone]</li>
23
- <li> <?php _e( 'Message', 'cf7skins' ); ?> [textarea cf7s-message]</li>
24
  </ol>
25
  </fieldset>
26
  <p>Use paragraphs for text that is not a form field.</p>
27
  <fieldset>
28
  <legend><?php _e( 'Your Requirements', 'cf7skins'); ?></legend>
29
  <ol>
30
- <li><?php _e( 'Checkboxes', 'cf7skins'); ?> [checkbox cf7s-checkbox-01 "<?php _e( 'Option 1', 'cf7skins' ); ?>" "<?php _e( 'Option 2', 'cf7skins' ); ?>" "<?php _e( 'Option 3', 'cf7skins' ); ?>"]</li>
31
- <li><?php _e( 'Radio Buttons', 'cf7skins'); ?> [radio cf7s-radio-01 "<?php _e( 'Yes', 'cf7skins' ); ?>" "<?php _e( 'No', 'cf7skins' ); ?>"]</li>
32
- <li><?php _e( 'Dropdown Select', 'cf7skins'); ?> [select cf7s-select-01 "<?php _e( 'Item 1', 'cf7skins' ); ?>" "<?php _e( 'Item 2', 'cf7skins' ); ?>" "<?php _e( 'Item 3', 'cf7skins' ); ?>"]</li>
33
  </ol>
34
  </fieldset>
35
  [submit "<?php _e( 'Submit', 'cf7skins'); ?>"]
6
  * Author URI: http://cf7skins.com
7
  * Description:
8
  * Instructions:
9
+ * Version: 1.0
10
+ * Version Date: 2015-08-28
11
  * License: GNU General Public License v2 or later
12
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
+ * Tags: fieldset
14
  * Text Domain:
15
  **/
16
  ?>
17
  <fieldset>
18
  <legend><?php _e( 'Your Details', 'cf7skins'); ?></legend>
19
  <ol>
20
+ <li> <?php _e( 'Name', 'cf7skins'); ?> [text cf7s-name] </li>
21
+ <li> <?php _e( 'Email', 'cf7skins'); ?> [email* cf7s-email] </li>
22
+ <li> <?php _e( 'Phone', 'cf7skins'); ?> [text cf7s-phone] </li>
23
+ <li> <?php _e( 'Message', 'cf7skins' ); ?> [textarea cf7s-message] </li>
24
  </ol>
25
  </fieldset>
26
  <p>Use paragraphs for text that is not a form field.</p>
27
  <fieldset>
28
  <legend><?php _e( 'Your Requirements', 'cf7skins'); ?></legend>
29
  <ol>
30
+ <li> <?php _e( 'Checkboxes', 'cf7skins'); ?> [checkbox cf7s-checkbox-01 "<?php _e( 'Option 1', 'cf7skins' ); ?>" "<?php _e( 'Option 2', 'cf7skins' ); ?>" "<?php _e( 'Option 3', 'cf7skins' ); ?>"] </li>
31
+ <li> <?php _e( 'Radio Buttons', 'cf7skins'); ?> [radio cf7s-radio-01 "<?php _e( 'Yes', 'cf7skins' ); ?>" "<?php _e( 'No', 'cf7skins' ); ?>"] </li>
32
+ <li> <?php _e( 'Dropdown Select', 'cf7skins'); ?> [select cf7s-select-01 "<?php _e( 'Item 1', 'cf7skins' ); ?>" "<?php _e( 'Item 2', 'cf7skins' ); ?>" "<?php _e( 'Item 3', 'cf7skins' ); ?>"] </li>
33
  </ol>
34
  </fieldset>
35
  [submit "<?php _e( 'Submit', 'cf7skins'); ?>"]
skins/templates/registration/registration.php CHANGED
@@ -6,8 +6,8 @@
6
  * Author URI: http://cf7skins.com
7
  * Description:
8
  * Instructions:
9
- * Version: 0.03
10
- * Version Date: 2014-11-07
11
  * License: GNU General Public License v2 or later
12
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
  * Tags:
@@ -15,19 +15,19 @@
15
  **/
16
  ?>
17
  <fieldset>
18
- <legend><?php _e( 'Registration', 'cf7skins'); ?></legend>
19
- <ol>
20
- <li> <?php _e( 'Name', 'cf7skins'); ?> [text cf7s-name]</li>
21
- <li> <?php _e( 'Address', 'cf7skins'); ?> [text cf7s-address]</li>
22
- <li> <?php _e( 'City', 'cf7skins'); ?> [text cf7s-city]</li>
23
- <li> <?php _e( 'State / Province / Region', 'cf7skins'); ?> [text cf7s-state]</li>
24
- <li> <?php _e( 'Phone Number', 'cf7skins'); ?> [tel cf7s-phone]</li>
25
- <li> <?php _e( 'Email', 'cf7skins'); ?> [email cf7s-email]</li>
26
- <li> <?php _e( 'Message', 'cf7skins'); ?> [textarea cf7s-special-needs]</li>
27
- <li> <?php _e( 'Preferred Contact Method', 'cf7skins'); ?> [radio cf7s-radio1 "<?php _e( 'Email', 'cf7skins' ); ?>" "<?php _e( 'Phone', 'cf7skins' ); ?>"] </li>
28
- <li> <?php _e( 'Drop-down menu', 'cf7skins'); ?> [select cf7s-select1 "<?php _e( 'Option 1', 'cf7skins' ); ?>" "<?php _e( 'Option 2', 'cf7skins' ); ?>" "<?php _e( 'Option 3', 'cf7skins' ); ?>"] </li>
29
- <li> <?php _e( 'Checkboxes', 'cf7skins'); ?> [checkbox cf7s-checkbox1 "<?php _e( 'Option 1', 'cf7skins' ); ?>" "<?php _e( 'Option 2', 'cf7skins' ); ?>" "<?php _e( 'Option 3', 'cf7skins' ); ?>"] </li>
30
- </ol>
31
- [submit "<?php _e( 'Submit', 'cf7skins'); ?>"]
32
  </fieldset>
33
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum tempus pharetra vehicula. Aliquam pellentesque mi non scelerisque placerat.</p>
6
  * Author URI: http://cf7skins.com
7
  * Description:
8
  * Instructions:
9
+ * Version: 1.0
10
+ * Version Date: 2015-08-28
11
  * License: GNU General Public License v2 or later
12
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
  * Tags:
15
  **/
16
  ?>
17
  <fieldset>
18
+ <legend><?php _e( 'Registration', 'cf7skins'); ?></legend>
19
+ <ol>
20
+ <li> <?php _e( 'Name', 'cf7skins'); ?> [text cf7s-name] </li>
21
+ <li> <?php _e( 'Address', 'cf7skins'); ?> [text cf7s-address] </li>
22
+ <li> <?php _e( 'City', 'cf7skins'); ?> [text cf7s-city] </li>
23
+ <li> <?php _e( 'State / Province / Region', 'cf7skins'); ?> [text cf7s-state] </li>
24
+ <li> <?php _e( 'Phone Number', 'cf7skins'); ?> [tel cf7s-phone] </li>
25
+ <li> <?php _e( 'Email', 'cf7skins'); ?> [email cf7s-email] </li>
26
+ <li> <?php _e( 'Message', 'cf7skins'); ?> [textarea cf7s-special-needs] </li>
27
+ <li> <?php _e( 'Preferred Contact Method', 'cf7skins'); ?> [radio cf7s-radio1 "<?php _e( 'Email', 'cf7skins' ); ?>" "<?php _e( 'Phone', 'cf7skins' ); ?>"] </li>
28
+ <li> <?php _e( 'Drop-down menu', 'cf7skins'); ?> [select cf7s-select1 "<?php _e( 'Option 1', 'cf7skins' ); ?>" "<?php _e( 'Option 2', 'cf7skins' ); ?>" "<?php _e( 'Option 3', 'cf7skins' ); ?>"] </li>
29
+ <li> <?php _e( 'Checkboxes', 'cf7skins'); ?> [checkbox cf7s-checkbox1 "<?php _e( 'Option 1', 'cf7skins' ); ?>" "<?php _e( 'Option 2', 'cf7skins' ); ?>" "<?php _e( 'Option 3', 'cf7skins' ); ?>"] </li>
30
+ </ol>
31
+ [submit "<?php _e( 'Submit', 'cf7skins'); ?>"]
32
  </fieldset>
33
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum tempus pharetra vehicula. Aliquam pellentesque mi non scelerisque placerat.</p>
skins/templates/suggestion/suggestion.php CHANGED
@@ -6,8 +6,8 @@
6
  * Author URI: http://cf7skins.com
7
  * Description:
8
  * Instructions:
9
- * Version: 0.03
10
- * Version Date: 2014-11-07
11
  * License: GNU General Public License v2 or later
12
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
  * Tags:
@@ -15,17 +15,17 @@
15
  **/
16
  ?>
17
  <fieldset>
18
- <legend><?php _e( 'Suggestion Form', 'cf7skins'); ?></legend>
19
- <p><strong><?php _e( 'Please let us know what you think.', 'cf7skins'); ?></strong></p>
20
- <ol>
21
- <li> <?php _e( 'In which of the following areas do you have a suggestion?', 'cf7skins'); ?> [select cf7s-select1 multiple"<?php _e( 'Area 1', 'cf7skins' ); ?>" "<?php _e( 'Area 2', 'cf7skins' ); ?>" "<?php _e( 'Area 3', 'cf7skins' ); ?>" "<?php _e( 'Area 4', 'cf7skins' ); ?>"]</li>
22
- <p><?php _e( 'Note: You can select multiple items (Use Shift or Ctrl/Cmd + Click)', 'cf7skins'); ?></p>
23
- <li><?php _e( 'Suggestion', 'cf7skins'); ?> [text cf7s-suggestion]</li>
24
- <li> <?php _e( 'Details', 'cf7skins'); ?> [textarea cf7s-details]</li>
25
- <li><?php _e( 'Your Email - please enter your email if you would like us to follow up with you.', 'cf7skins'); ?> [email cf7s-email]</li>
26
- <li> <?php _e( 'Radio buttons', 'cf7skins'); ?> [radio cf7s-radio1 "<?php _e( 'Option 1', 'cf7skins' ); ?>" "<?php _e( 'Option 2', 'cf7skins' ); ?>" "<?php _e( 'Option 3', 'cf7skins' ); ?>"] </li>
27
- <li> <?php _e( 'Checkboxes', 'cf7skins'); ?> [checkbox cf7s-checkbox1 "<?php _e( 'Option 1', 'cf7skins' ); ?>" "<?php _e( 'Option 2', 'cf7skins' ); ?>" "<?php _e( 'Option 3', 'cf7skins' ); ?>"] </li>
28
- </ol>
29
- [submit "<?php _e( 'Submit', 'cf7skins'); ?>"]
30
  </fieldset>
31
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum tempus pharetra vehicula. Aliquam pellentesque mi non scelerisque placerat.</p>
6
  * Author URI: http://cf7skins.com
7
  * Description:
8
  * Instructions:
9
+ * Version: 1.0
10
+ * Version Date: 2015-08-28
11
  * License: GNU General Public License v2 or later
12
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
  * Tags:
15
  **/
16
  ?>
17
  <fieldset>
18
+ <legend><?php _e( 'Suggestion Form', 'cf7skins'); ?></legend>
19
+ <p><strong><?php _e( 'Please let us know what you think.', 'cf7skins'); ?></strong></p>
20
+ <ol>
21
+ <li> <?php _e( 'In which of the following areas do you have a suggestion?', 'cf7skins'); ?> [select cf7s-select1 multiple"<?php _e( 'Area 1', 'cf7skins' ); ?>" "<?php _e( 'Area 2', 'cf7skins' ); ?>" "<?php _e( 'Area 3', 'cf7skins' ); ?>" "<?php _e( 'Area 4', 'cf7skins' ); ?>"] </li>
22
+ <p><?php _e( 'Note: You can select multiple items (Use Shift or Ctrl/Cmd + Click)', 'cf7skins'); ?></p>
23
+ <li> <?php _e( 'Suggestion', 'cf7skins'); ?> [text cf7s-suggestion] </li>
24
+ <li> <?php _e( 'Details', 'cf7skins'); ?> [textarea cf7s-details] </li>
25
+ <li> <?php _e( 'Your Email - please enter your email if you would like us to follow up with you.', 'cf7skins'); ?> [email cf7s-email] </li>
26
+ <li> <?php _e( 'Radio buttons', 'cf7skins'); ?> [radio cf7s-radio1 "<?php _e( 'Option 1', 'cf7skins' ); ?>" "<?php _e( 'Option 2', 'cf7skins' ); ?>" "<?php _e( 'Option 3', 'cf7skins' ); ?>"] </li>
27
+ <li> <?php _e( 'Checkboxes', 'cf7skins'); ?> [checkbox cf7s-checkbox1 "<?php _e( 'Option 1', 'cf7skins' ); ?>" "<?php _e( 'Option 2', 'cf7skins' ); ?>" "<?php _e( 'Option 3', 'cf7skins' ); ?>"] </li>
28
+ </ol>
29
+ [submit "<?php _e( 'Submit', 'cf7skins'); ?>"]
30
  </fieldset>
31
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum tempus pharetra vehicula. Aliquam pellentesque mi non scelerisque placerat.</p>
skins/templates/survey/survey.php CHANGED
@@ -6,8 +6,8 @@
6
  * Author URI: http://cf7skins.com
7
  * Description:
8
  * Instructions:
9
- * Version: 0.03
10
- * Version Date: 2014-11-07
11
  * License: GNU General Public License v2 or later
12
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
  * Tags:
@@ -15,18 +15,18 @@
15
  **/
16
  ?>
17
  <fieldset>
18
- <legend><?php _e( 'Survey Form', 'cf7skins'); ?></legend>
19
- <p>Please help us to serve you better by completing this survey. It should take around 5 minutes to complete.</p>
20
- <ol>
21
- <li> <?php _e( 'Overall, how satisfied are you with our product / service?', 'cf7skins'); ?> [radio cf7s-survey1 "<?php _e( 'Very Satisfied', 'cf7skins' ); ?>" "<?php _e( 'Satisfied', 'cf7skins' ); ?>" "<?php _e( 'Neutral', 'cf7skins' ); ?>" "<?php _e( 'Unsatisfied', 'cf7skins' ); ?>" "<?php _e( 'Very Unsatisfied', 'cf7skins' ); ?>" " N/A"] </li>
22
- <li> <?php _e( 'Would you recommend our product / service to others?', 'cf7skins'); ?> [radio cf7s-survey2 "<?php _e( 'Definitely', 'cf7skins' ); ?>" "<?php _e( 'Probably', 'cf7skins' ); ?>" "<?php _e( 'Not Sure', 'cf7skins' ); ?>" "<?php _e( 'Probably Not', 'cf7skins' ); ?>" "<?php _e( 'Definitely Not', 'cf7skins' ); ?>"] </li>
23
- <li> <?php _e( 'How long have you used our product / service?', 'cf7skins'); ?> [radio cf7s-survey3 "<?php _e( 'Less than a month', 'cf7skins' ); ?>" "<?php _e( '1-6 months', 'cf7skins' ); ?>" "<?php _e( '1-3 years', 'cf7skins' ); ?>" "<?php _e( 'Over 3 Years', 'cf7skins' ); ?>" "<?php _e( 'Never used', 'cf7skins' ); ?>"] </li>
24
- <li> <?php _e( 'How often do you use our product / service?', 'cf7skins'); ?> [radio cf7s-survey4 "<?php _e( 'Once a week', 'cf7skins' ); ?>" "<?php _e( '2 to 3 times a month', 'cf7skins' ); ?>" "<?php _e( 'Once a month', 'cf7skins' ); ?>" "<?php _e( 'Less than once a month', 'cf7skins' ); ?>"] </li>
25
- <li> <?php _e( 'What aspect of the product / service were you most satisfied by?', 'cf7skins'); ?> [radio cf7s-survey5 "<?php _e( 'Quality', 'cf7skins' ); ?>" "<?php _e( 'Price', 'cf7skins' ); ?>" "<?php _e( 'Purchase Experience', 'cf7skins' ); ?>" "<?php _e( 'Usage Experience', 'cf7skins' ); ?>" "<?php _e( 'Customer Service', 'cf7skins' ); ?>"] </li>
26
- <li> <?php _e( 'Overall, the product / service met my expectations?', 'cf7skins'); ?> [radio cf7s-survey6 "<?php _e( 'Strongly Agree', 'cf7skins' ); ?>" "<?php _e( 'Agree', 'cf7skins' ); ?>" "<?php _e( 'Neutral', 'cf7skins' ); ?>" "<?php _e( 'Disagree', 'cf7skins' ); ?>" "<?php _e( 'Strongly Disagree', 'cf7skins' ); ?>" "<?php _e( "Don't Know", 'cf7skins' ); ?>"] </li>
27
- <li> <?php _e( 'What do you like about the product / service?', 'cf7skins'); ?>[textarea cf7s-survey7]</li>
28
- <li> <?php _e( 'Thinking of similar products / services offered by others, how would you compare the product / service offered by us?', 'cf7skins'); ?> [radio cf7s-survey8 "<?php _e( 'Much Better', 'cf7skins' ); ?>" "<?php _e( 'Somewhat Better', 'cf7skins' ); ?>" "<?php _e( 'About the Same', 'cf7skins' ); ?>" "<?php _e( 'Somewhat Worse', 'cf7skins' ); ?>" "<?php _e( 'Much Worse', 'cf7skins' ); ?>" "<?php _e( 'Don\'t Know', 'cf7skins' ); ?>"] </li>
29
- </ol>
30
- [submit "<?php _e( 'Submit', 'cf7skins'); ?>"]
31
  </fieldset>
32
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum tempus pharetra vehicula. Aliquam pellentesque mi non scelerisque placerat.</p>
6
  * Author URI: http://cf7skins.com
7
  * Description:
8
  * Instructions:
9
+ * Version: 1.0
10
+ * Version Date: 2015-08-28
11
  * License: GNU General Public License v2 or later
12
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
  * Tags:
15
  **/
16
  ?>
17
  <fieldset>
18
+ <legend><?php _e( 'Survey Form', 'cf7skins'); ?></legend>
19
+ <p>Please help us to serve you better by completing this survey. It should take around 5 minutes to complete.</p>
20
+ <ol>
21
+ <li> <?php _e( 'Overall, how satisfied are you with our product / service?', 'cf7skins'); ?> [radio cf7s-survey1 "<?php _e( 'Very Satisfied', 'cf7skins' ); ?>" "<?php _e( 'Satisfied', 'cf7skins' ); ?>" "<?php _e( 'Neutral', 'cf7skins' ); ?>" "<?php _e( 'Unsatisfied', 'cf7skins' ); ?>" "<?php _e( 'Very Unsatisfied', 'cf7skins' ); ?>" " N/A"] </li>
22
+ <li> <?php _e( 'Would you recommend our product / service to others?', 'cf7skins'); ?> [radio cf7s-survey2 "<?php _e( 'Definitely', 'cf7skins' ); ?>" "<?php _e( 'Probably', 'cf7skins' ); ?>" "<?php _e( 'Not Sure', 'cf7skins' ); ?>" "<?php _e( 'Probably Not', 'cf7skins' ); ?>" "<?php _e( 'Definitely Not', 'cf7skins' ); ?>"] </li>
23
+ <li> <?php _e( 'How long have you used our product / service?', 'cf7skins'); ?> [radio cf7s-survey3 "<?php _e( 'Less than a month', 'cf7skins' ); ?>" "<?php _e( '1-6 months', 'cf7skins' ); ?>" "<?php _e( '1-3 years', 'cf7skins' ); ?>" "<?php _e( 'Over 3 Years', 'cf7skins' ); ?>" "<?php _e( 'Never used', 'cf7skins' ); ?>"] </li>
24
+ <li> <?php _e( 'How often do you use our product / service?', 'cf7skins'); ?> [radio cf7s-survey4 "<?php _e( 'Once a week', 'cf7skins' ); ?>" "<?php _e( '2 to 3 times a month', 'cf7skins' ); ?>" "<?php _e( 'Once a month', 'cf7skins' ); ?>" "<?php _e( 'Less than once a month', 'cf7skins' ); ?>"] </li>
25
+ <li> <?php _e( 'What aspect of the product / service were you most satisfied by?', 'cf7skins'); ?> [radio cf7s-survey5 "<?php _e( 'Quality', 'cf7skins' ); ?>" "<?php _e( 'Price', 'cf7skins' ); ?>" "<?php _e( 'Purchase Experience', 'cf7skins' ); ?>" "<?php _e( 'Usage Experience', 'cf7skins' ); ?>" "<?php _e( 'Customer Service', 'cf7skins' ); ?>"] </li>
26
+ <li> <?php _e( 'Overall, the product / service met my expectations?', 'cf7skins'); ?> [radio cf7s-survey6 "<?php _e( 'Strongly Agree', 'cf7skins' ); ?>" "<?php _e( 'Agree', 'cf7skins' ); ?>" "<?php _e( 'Neutral', 'cf7skins' ); ?>" "<?php _e( 'Disagree', 'cf7skins' ); ?>" "<?php _e( 'Strongly Disagree', 'cf7skins' ); ?>" "<?php _e( "Don't Know", 'cf7skins' ); ?>"] </li>
27
+ <li> <?php _e( 'What do you like about the product / service?', 'cf7skins'); ?>[textarea cf7s-survey7] </li>
28
+ <li> <?php _e( 'Thinking of similar products / services offered by others, how would you compare the product / service offered by us?', 'cf7skins'); ?> [radio cf7s-survey8 "<?php _e( 'Much Better', 'cf7skins' ); ?>" "<?php _e( 'Somewhat Better', 'cf7skins' ); ?>" "<?php _e( 'About the Same', 'cf7skins' ); ?>" "<?php _e( 'Somewhat Worse', 'cf7skins' ); ?>" "<?php _e( 'Much Worse', 'cf7skins' ); ?>" "<?php _e( 'Don\'t Know', 'cf7skins' ); ?>"] </li>
29
+ </ol>
30
+ [submit "<?php _e( 'Submit', 'cf7skins'); ?>"]
31
  </fieldset>
32
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum tempus pharetra vehicula. Aliquam pellentesque mi non scelerisque placerat.</p>