Contact Form Builder – a plugin for creating contact and feedback forms - Version 1.0.40

Version Description

Added: Optional delimiter for exported csv.
Changed: Featured plugins page.

Download this release

Release Info

Developer webdorado
Plugin Icon 128x128 Contact Form Builder – a plugin for creating contact and feedback forms
Version 1.0.40
Comparing to
See all releases

Code changes from version 1.0.39 to 1.0.40

Files changed (45) hide show
  1. contact-form-builder.php +3 -3
  2. featured/featured.php +8 -8
  3. featured/featured_themes.php +41 -14
  4. featured/images/catalog.jpg +0 -0
  5. featured/images/catalog.png +0 -0
  6. featured/images/contact-form-builder.jpg +0 -0
  7. featured/images/contact-form-maker.jpg +0 -0
  8. featured/images/contact.builder.png +0 -0
  9. featured/images/contact.maker.png +0 -0
  10. featured/images/contacts.jpg +0 -0
  11. featured/images/contacts.png +0 -0
  12. featured/images/download.jpg +0 -0
  13. featured/images/events-wd.png +0 -0
  14. featured/images/facebook.jpg +0 -0
  15. featured/images/facebook.png +0 -0
  16. featured/images/faq.jpg +0 -0
  17. featured/images/faq.png +0 -0
  18. featured/images/faq_wd.png +0 -0
  19. featured/images/featured_plugins_bg.png +0 -0
  20. featured/images/flash.calendar.jpg +0 -0
  21. featured/images/flash.calendar.png +0 -0
  22. featured/images/fm.import.jpg +0 -0
  23. featured/images/folder.menu.jpg +0 -0
  24. featured/images/folder.menu.png +0 -0
  25. featured/images/form.jpg +0 -0
  26. featured/images/form.png +0 -0
  27. featured/images/instagram_feed.png +0 -0
  28. featured/images/photo-gallery.jpg +0 -0
  29. featured/images/photo-gallery.png +0 -0
  30. featured/images/player.jpg +0 -0
  31. featured/images/player.png +0 -0
  32. featured/images/portfolio.png +0 -0
  33. featured/images/post-slider.png +0 -0
  34. featured/images/random.post.png +0 -0
  35. featured/images/slider.jpg +0 -0
  36. featured/images/slider.png +0 -0
  37. featured/images/spider-calendar.jpg +0 -0
  38. featured/images/spider.calendar.png +0 -0
  39. featured/images/twitter-widget.jpg +0 -0
  40. featured/images/twittertools.png +0 -0
  41. featured/images/zoom.jpg +0 -0
  42. featured/images/zoom.png +0 -0
  43. featured/style.css +124 -38
  44. featured/themes_style.css +121 -46
  45. readme.txt +4 -1
contact-form-builder.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Contact Form Builder
4
  * Plugin URI: http://web-dorado.com/products/wordpress-contact-form-builder.html
5
  * Description: Contact Form Builder is an advanced plugin to add contact forms into your website. It comes along with multiple default templates which can be customized.
6
- * Version: 1.0.39
7
  * Author: WebDorado
8
  * Author URI: http://web-dorado.com/
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
@@ -33,7 +33,7 @@ function contact_form_maker_options_panel() {
33
  add_action('admin_print_styles-' . $licensing_plugins_page, 'contact_form_maker_licensing_styles');
34
 
35
  add_submenu_page('manage_cfm', __('Featured Plugins', 'contact_form_maker'), __('Featured Plugins', 'contact_form_maker'), 'manage_options', 'featured_plugins_cfm', 'cfm_featured');
36
- add_submenu_page('manage_cfm', __('Featured Themes', 'contact_form_maker'), __('Featured Themes', 'contact_form_maker'), 'manage_options', 'featured_themes_cfm', 'wds_featured_themes');
37
 
38
  $uninstall_page = add_submenu_page('manage_cfm', __('Uninstall', 'contact_form_maker'), __('Uninstall', 'contact_form_maker'), 'manage_options', 'uninstall_cfm', 'contact_form_maker');
39
  add_action('admin_print_styles-' . $uninstall_page, 'contact_form_maker_styles');
@@ -172,7 +172,7 @@ if (class_exists('WP_Widget')) {
172
  // Activate plugin.
173
  function contact_form_maker_activate() {
174
  $version = get_option("wd_contact_form_maker_version");
175
- $new_version = '1.0.39';
176
  if ($version && version_compare($version, $new_version, '<')) {
177
  require_once WD_CFM_DIR . "/contact-form-builder-update.php";
178
  contact_form_maker_update($version);
3
  * Plugin Name: Contact Form Builder
4
  * Plugin URI: http://web-dorado.com/products/wordpress-contact-form-builder.html
5
  * Description: Contact Form Builder is an advanced plugin to add contact forms into your website. It comes along with multiple default templates which can be customized.
6
+ * Version: 1.0.40
7
  * Author: WebDorado
8
  * Author URI: http://web-dorado.com/
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
33
  add_action('admin_print_styles-' . $licensing_plugins_page, 'contact_form_maker_licensing_styles');
34
 
35
  add_submenu_page('manage_cfm', __('Featured Plugins', 'contact_form_maker'), __('Featured Plugins', 'contact_form_maker'), 'manage_options', 'featured_plugins_cfm', 'cfm_featured');
36
+ add_submenu_page('manage_cfm', __('Featured Themes', 'contact_form_maker'), __('Featured Themes', 'contact_form_maker'), 'manage_options', 'featured_themes_cfm', 'cfm_featured_themes');
37
 
38
  $uninstall_page = add_submenu_page('manage_cfm', __('Uninstall', 'contact_form_maker'), __('Uninstall', 'contact_form_maker'), 'manage_options', 'uninstall_cfm', 'contact_form_maker');
39
  add_action('admin_print_styles-' . $uninstall_page, 'contact_form_maker_styles');
172
  // Activate plugin.
173
  function contact_form_maker_activate() {
174
  $version = get_option("wd_contact_form_maker_version");
175
+ $new_version = '1.0.40';
176
  if ($version && version_compare($version, $new_version, '<')) {
177
  require_once WD_CFM_DIR . "/contact-form-builder-update.php";
178
  contact_form_maker_update($version);
featured/featured.php CHANGED
@@ -37,12 +37,6 @@ function spider_featured($current_plugin = '') {
37
  'content' => 'WordPress Contact Form Maker is an advanced and easy-to-use tool for creating forms.',
38
  'href' => 'https://web-dorado.com/products/wordpress-contact-form-maker-plugin.html'
39
  ),
40
- "fm-import" => array(
41
- 'title' => 'FM Export/Import',
42
- 'text' => 'WordPress Form Maker export/import plugin',
43
- 'content' => 'Form Maker Export/Import is a Form Maker capacity enhancing plugin.',
44
- 'href' => 'https://web-dorado.com/products/wordpress-form/export-import.html'
45
- ),
46
  "spider-calendar" => array(
47
  'title' => 'Spider Calendar',
48
  'text' => 'WordPress event calendar plugin',
@@ -125,6 +119,12 @@ function spider_featured($current_plugin = '') {
125
  ?>
126
  <div id="main_featured_plugins_page">
127
  <h3>Featured Plugins</h3>
 
 
 
 
 
 
128
  <ul id="featured-plugins-list">
129
  <?php
130
  foreach ($plugins as $key => $plugins) {
@@ -138,7 +138,7 @@ function spider_featured($current_plugin = '') {
138
  <div class="description">
139
  <p><?php echo $plugins['content']; ?></p>
140
  </div>
141
- <a target="_blank" href="<?php echo $plugins['href']; ?>" class="download">Download</a>
142
  </li>
143
  <?php
144
  }
@@ -147,4 +147,4 @@ function spider_featured($current_plugin = '') {
147
  </ul>
148
  </div>
149
  <?php
150
- }
37
  'content' => 'WordPress Contact Form Maker is an advanced and easy-to-use tool for creating forms.',
38
  'href' => 'https://web-dorado.com/products/wordpress-contact-form-maker-plugin.html'
39
  ),
 
 
 
 
 
 
40
  "spider-calendar" => array(
41
  'title' => 'Spider Calendar',
42
  'text' => 'WordPress event calendar plugin',
119
  ?>
120
  <div id="main_featured_plugins_page">
121
  <h3>Featured Plugins</h3>
122
+ <div class="featured_header">
123
+ <a target="_blank" href="https://web-dorado.com/wordpress-plugins.html?source=<?php echo $current_plugin; ?>">
124
+ <h1>GET <?php echo $plugins[$current_plugin]["title"]; ?> +18 PLUGINS</h1>
125
+ <h1 class="get_plugins">FOR $100 ONLY <span>- SAVE 70%</span></h1>
126
+ </a>
127
+ </div>
128
  <ul id="featured-plugins-list">
129
  <?php
130
  foreach ($plugins as $key => $plugins) {
138
  <div class="description">
139
  <p><?php echo $plugins['content']; ?></p>
140
  </div>
141
+ <a target="_blank" href="<?php echo $plugins['href']; ?>" class="download">Download Plugin &#9658;</a>
142
  </li>
143
  <?php
144
  }
147
  </ul>
148
  </div>
149
  <?php
150
+ }
featured/featured_themes.php CHANGED
@@ -1,9 +1,34 @@
1
  <?php
2
  function spider_featured_themes() {
3
  ?>
4
- <div id="main_featured_themes_page">
5
- <h3>Featured Themes</h3>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  <ul id="featured-plugins-list">
 
 
 
 
 
 
 
 
 
 
7
  <li class="business_elite">
8
  <div class="product"></div>
9
  <div class="title">
@@ -12,7 +37,7 @@ function spider_featured_themes() {
12
  <div class="description">
13
  <p>Business Elite is a robust parallax theme for business websites. The theme uses smooth transitions and many functional sections.</p>
14
  </div>
15
- <a target="_blank" href="https://web-dorado.com/wordpress-themes/business-elite.html" class="download">Download plugin >></a>
16
  </li>
17
  <li class="sauron">
18
  <div class="product"></div>
@@ -22,7 +47,7 @@ function spider_featured_themes() {
22
  <div class="description">
23
  <p>Sauron is a multipurpose parallax theme, which uses multiple interactive sections designed for the client-engagement.</p>
24
  </div>
25
- <a target="_blank" href="https://web-dorado.com/wordpress-themes/sauron.html" class="download">Download</a>
26
  </li>
27
  <li class="mottomag">
28
  <div class="product"></div>
@@ -32,7 +57,7 @@ function spider_featured_themes() {
32
  <div class="description">
33
  <p>MottoMag is a vibrant, responsive theme which is a perfect choice for the combination of textual content with videos and images.</p>
34
  </div>
35
- <a target="_blank" href="https://web-dorado.com/wordpress-themes/mottomag.html" class="download">Download</a>
36
  </li>
37
  <li class="business_world">
38
  <div class="product"></div>
@@ -42,7 +67,7 @@ function spider_featured_themes() {
42
  <div class="description">
43
  <p>Business World is an innovative WordPress theme great for Business websites.</p>
44
  </div>
45
- <a target="_blank" href="https://web-dorado.com/wordpress-themes/business-world.html" class="download">Download</a>
46
  </li>
47
  <li class="best_magazine">
48
  <div class="product"></div>
@@ -52,7 +77,7 @@ function spider_featured_themes() {
52
  <div class="description">
53
  <p>Best Magazine is an ultimate selection when you are dealing with multi-category news websites.</p>
54
  </div>
55
- <a target="_blank" href="https://web-dorado.com/wordpress-themes/best-magazine.html" class="download">Download</a>
56
  </li>
57
  <li class="wedding_style">
58
  <div class="product"></div>
@@ -62,7 +87,7 @@ function spider_featured_themes() {
62
  <div class="description">
63
  <p>Wedding style is a responsive theme designed for the organization and maintenance of wedding websites and blogs.</p>
64
  </div>
65
- <a target="_blank" href="https://web-dorado.com/wordpress-themes/wedding-style.html" class="download">Download</a>
66
  </li>
67
  <li class="magazine">
68
  <div class="product"></div>
@@ -72,7 +97,7 @@ function spider_featured_themes() {
72
  <div class="description">
73
  <p>Magazine theme is a perfect solution when creating news and informational websites. It comes with a wide range of layout options.</p>
74
  </div>
75
- <a target="_blank" href="https://web-dorado.com/wordpress-themes/news-magazine.html" class="download">Download</a>
76
  </li>
77
  <li class="weddings">
78
  <div class="product"></div>
@@ -82,7 +107,7 @@ function spider_featured_themes() {
82
  <div class="description">
83
  <p>Weddings is an elegant, responsive WordPress theme designed for wedding websites. The theme includes multiple pages, homepage slider and gallery support.</p>
84
  </div>
85
- <a target="_blank" href="https://web-dorado.com/wordpress-themes/wedding.html" class="download">Download</a>
86
  </li>
87
  <li class="exclusive">
88
  <div class="product"></div>
@@ -92,7 +117,7 @@ function spider_featured_themes() {
92
  <div class="description">
93
  <p>Exclusive is a unique theme designed to best fit business style websites. It comes with a large list of customizable features.</p>
94
  </div>
95
- <a target="_blank" href="https://web-dorado.com/wordpress-themes/exclusive.html" class="download">Download</a>
96
  </li>
97
  <li class="expert">
98
  <div class="product"></div>
@@ -102,9 +127,11 @@ function spider_featured_themes() {
102
  <div class="description">
103
  <p>WordPress Expert is a modern, user-friendly and stylish theme. It has a list of customizable layout, style, colors and fonts.</p>
104
  </div>
105
- <a target="_blank" href="https://web-dorado.com/wordpress-themes/business-responsive.html" class="download">Download</a>
106
  </li>
107
  </ul>
108
- </div>
 
 
109
  <?php
110
- }
1
  <?php
2
  function spider_featured_themes() {
3
  ?>
4
+ <div id="main_featured_themes_page">
5
+ <table align="center" width="90%" style="margin-top: 0px;border-bottom: rgb(111, 111, 111) solid 1px;">
6
+ <tr>
7
+ <td colspan="2" style="height: 40px; padding: 30px 0px 0px 0px;">
8
+ <h3 style="margin: 0px;font-family:Segoe UI;padding-bottom: 15px;color: rgb(111, 111, 111); font-size:18pt;">Featured Themes</h3>
9
+ </td>
10
+ <td align="right" style="font-size:16px;"></td>
11
+ </tr>
12
+ </table>
13
+ <div class="featured_header">
14
+ <div>
15
+ <a target="_blank" href="https://web-dorado.com/wordpress-themes.html?source=contact_form_bulder">
16
+ <h1>WORDPRESS THEMES</h1>
17
+ <h1 class="get_plugins">ALL FOR $40 ONLY <span>- SAVE 80%</span></h1>
18
+ </a>
19
+ </div>
20
+ <form method="post">
21
  <ul id="featured-plugins-list">
22
+ <li class="portfolio">
23
+ <div class="product"></div>
24
+ <div class="title">
25
+ <strong class="heading">Portfolio Gallery Theme</strong>
26
+ </div>
27
+ <div class="description">
28
+ <p>Portfolio Gallery helps to display images using various color schemes and layouts combined with elegant fonts and content parts.</p>
29
+ </div>
30
+ <a target="_blank" href="https://web-dorado.com/wordpress-themes/portfolio-gallery.html" class="download">Download theme &#9658;</a>
31
+ </li>
32
  <li class="business_elite">
33
  <div class="product"></div>
34
  <div class="title">
37
  <div class="description">
38
  <p>Business Elite is a robust parallax theme for business websites. The theme uses smooth transitions and many functional sections.</p>
39
  </div>
40
+ <a target="_blank" href="https://web-dorado.com/wordpress-themes/business-elite.html" class="download">Download theme &#9658;</a>
41
  </li>
42
  <li class="sauron">
43
  <div class="product"></div>
47
  <div class="description">
48
  <p>Sauron is a multipurpose parallax theme, which uses multiple interactive sections designed for the client-engagement.</p>
49
  </div>
50
+ <a target="_blank" href="https://web-dorado.com/wordpress-themes/sauron.html" class="download">Download plugin &#9658;</a>
51
  </li>
52
  <li class="mottomag">
53
  <div class="product"></div>
57
  <div class="description">
58
  <p>MottoMag is a vibrant, responsive theme which is a perfect choice for the combination of textual content with videos and images.</p>
59
  </div>
60
+ <a target="_blank" href="https://web-dorado.com/wordpress-themes/mottomag.html" class="download">Download plugin &#9658;</a>
61
  </li>
62
  <li class="business_world">
63
  <div class="product"></div>
67
  <div class="description">
68
  <p>Business World is an innovative WordPress theme great for Business websites.</p>
69
  </div>
70
+ <a target="_blank" href="https://web-dorado.com/wordpress-themes/business-world.html" class="download">Download plugin &#9658;</a>
71
  </li>
72
  <li class="best_magazine">
73
  <div class="product"></div>
77
  <div class="description">
78
  <p>Best Magazine is an ultimate selection when you are dealing with multi-category news websites.</p>
79
  </div>
80
+ <a target="_blank" href="https://web-dorado.com/wordpress-themes/best-magazine.html" class="download">Download plugin &#9658;</a>
81
  </li>
82
  <li class="wedding_style">
83
  <div class="product"></div>
87
  <div class="description">
88
  <p>Wedding style is a responsive theme designed for the organization and maintenance of wedding websites and blogs.</p>
89
  </div>
90
+ <a target="_blank" href="https://web-dorado.com/wordpress-themes/wedding-style.html" class="download">Download plugin &#9658;</a>
91
  </li>
92
  <li class="magazine">
93
  <div class="product"></div>
97
  <div class="description">
98
  <p>Magazine theme is a perfect solution when creating news and informational websites. It comes with a wide range of layout options.</p>
99
  </div>
100
+ <a target="_blank" href="https://web-dorado.com/wordpress-themes/news-magazine.html" class="download">Download plugin &#9658;</a>
101
  </li>
102
  <li class="weddings">
103
  <div class="product"></div>
107
  <div class="description">
108
  <p>Weddings is an elegant, responsive WordPress theme designed for wedding websites. The theme includes multiple pages, homepage slider and gallery support.</p>
109
  </div>
110
+ <a target="_blank" href="https://web-dorado.com/wordpress-themes/wedding.html" class="download">Download plugin &#9658;</a>
111
  </li>
112
  <li class="exclusive">
113
  <div class="product"></div>
117
  <div class="description">
118
  <p>Exclusive is a unique theme designed to best fit business style websites. It comes with a large list of customizable features.</p>
119
  </div>
120
+ <a target="_blank" href="https://web-dorado.com/wordpress-themes/exclusive.html" class="download">Download plugin &#9658;</a>
121
  </li>
122
  <li class="expert">
123
  <div class="product"></div>
127
  <div class="description">
128
  <p>WordPress Expert is a modern, user-friendly and stylish theme. It has a list of customizable layout, style, colors and fonts.</p>
129
  </div>
130
+ <a target="_blank" href="https://web-dorado.com/wordpress-themes/business-responsive.html" class="download">Download plugin &#9658;</a>
131
  </li>
132
  </ul>
133
+ </form>
134
+ </div>
135
+ </div>
136
  <?php
137
+ }
featured/images/catalog.jpg DELETED
Binary file
featured/images/catalog.png CHANGED
Binary file
featured/images/contact-form-builder.jpg DELETED
Binary file
featured/images/contact-form-maker.jpg DELETED
Binary file
featured/images/contact.builder.png CHANGED
Binary file
featured/images/contact.maker.png CHANGED
Binary file
featured/images/contacts.jpg DELETED
Binary file
featured/images/contacts.png CHANGED
Binary file
featured/images/download.jpg DELETED
Binary file
featured/images/events-wd.png CHANGED
Binary file
featured/images/facebook.jpg DELETED
Binary file
featured/images/facebook.png CHANGED
Binary file
featured/images/faq.jpg DELETED
Binary file
featured/images/faq.png CHANGED
Binary file
featured/images/faq_wd.png CHANGED
Binary file
featured/images/featured_plugins_bg.png ADDED
Binary file
featured/images/flash.calendar.jpg DELETED
Binary file
featured/images/flash.calendar.png CHANGED
Binary file
featured/images/fm.import.jpg DELETED
Binary file
featured/images/folder.menu.jpg DELETED
Binary file
featured/images/folder.menu.png CHANGED
Binary file
featured/images/form.jpg DELETED
Binary file
featured/images/form.png CHANGED
Binary file
featured/images/instagram_feed.png CHANGED
Binary file
featured/images/photo-gallery.jpg DELETED
Binary file
featured/images/photo-gallery.png CHANGED
Binary file
featured/images/player.jpg DELETED
Binary file
featured/images/player.png CHANGED
Binary file
featured/images/portfolio.png ADDED
Binary file
featured/images/post-slider.png ADDED
Binary file
featured/images/random.post.png CHANGED
Binary file
featured/images/slider.jpg DELETED
Binary file
featured/images/slider.png CHANGED
Binary file
featured/images/spider-calendar.jpg DELETED
Binary file
featured/images/spider.calendar.png CHANGED
Binary file
featured/images/twitter-widget.jpg DELETED
Binary file
featured/images/twittertools.png CHANGED
Binary file
featured/images/zoom.jpg DELETED
Binary file
featured/images/zoom.png CHANGED
Binary file
featured/style.css CHANGED
@@ -1,46 +1,54 @@
 
 
 
 
 
 
 
 
1
  #main_featured_plugins_page h3 {
2
- border-bottom: 2px solid rgb(111, 111, 111);
3
- color: rgb(111, 111, 111);
4
- font-family: Segoe UI;
5
- font-size: 30px;
6
- margin: 0px;
7
- padding: 20px 0;
8
- width: 99%;
9
  }
10
 
11
  #main_featured_plugins_page #featured-plugins-list {
12
  position:relative;
13
  margin:0px auto;
14
- width: 95.4%;
15
  height:auto;
16
  display:table;
17
  list-style:none;
18
- margin-left: 38px;
 
19
  }
20
 
21
  #main_featured_plugins_page #featured-plugins-list li {
22
- float: left;
23
- width: 17%;
24
- margin: 20px 0px 0px 25px;
25
- background: #FFFFFF;
26
- border: 1px solid #B8B8B8;
27
- height: 354px;
 
 
28
  }
29
 
30
- #main_featured_plugins_page #featured-plugins-list li .product {
31
  position:relative;
32
  height:113px;
33
- background-color: #F1F1F1 !important;
34
  background-position-x: 50% !important;
35
  margin: 7px;
36
- border: 1px solid #DEDCDC;
37
  border-radius: 3px;
 
38
  }
39
 
40
- #main_featured_plugins_page #featured-plugins-list li .title {
41
  width: 90%;
42
  text-align: center;
43
- border-bottom: 1px solid #cacaca;
44
  margin: 0 auto;
45
  }
46
 
@@ -65,38 +73,116 @@
65
  #main_featured_plugins_page #featured-plugins-list li.faq_wd .product {background:url("images/faq_wd.png") center center no-repeat;}
66
  #main_featured_plugins_page #featured-plugins-list li.instagram_feed .product {background:url("images/instagram_feed.png") center center no-repeat;}
67
 
68
- #main_featured_plugins_page #featured-plugins-list li .title .heading {
69
  display: block;
70
- position: relative;
71
- font-size: 16px;
72
- color: #23282C;
73
- margin: 13px 0px 13px 0px;
 
74
  }
75
 
76
- #main_featured_plugins_page #featured-plugins-list li .title p {
77
- font-size: 14px;
78
- color: #444;
79
- margin-left: 20px;
80
  }
81
 
82
- #main_featured_plugins_page #featured-plugins-list li .description {
83
  height: 127px;
84
  width: 90%;
85
  margin: 0 auto;
86
  }
87
 
88
- #main_featured_plugins_page #featured-plugins-list li .description p {
89
  text-align: center;
90
  width: 100%;
 
 
91
  }
92
 
93
  #featured-plugins-list li a.download {
94
  display: block;
95
- height: 32px;
96
- text-indent: -9999px;
97
- background: url("images/download_plugins.png") center 17px no-repeat;
98
- border-top: 1px solid #CACACA;
99
- outline: none;
100
- width: 90%;
101
- margin: 0 auto;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
  }
1
+ @import url(http://fonts.googleapis.com/css?family=Oswald);
2
+
3
+ #main_featured_plugins_page {
4
+ font-family: Oswald;
5
+ width: 90%;
6
+ margin: 15px auto 0px auto;
7
+ }
8
+
9
  #main_featured_plugins_page h3 {
10
+ border-bottom: 2px solid #CECECE;
11
+ color: rgb(111, 111, 111);
12
+ font-family: Segoe UI;
13
+ font-size: 18px;
14
+ margin: 0px auto 15px auto;
15
+ padding: 20px 0;
 
16
  }
17
 
18
  #main_featured_plugins_page #featured-plugins-list {
19
  position:relative;
20
  margin:0px auto;
 
21
  height:auto;
22
  display:table;
23
  list-style:none;
24
+ text-align: center;
25
+ width: 100%;
26
  }
27
 
28
  #main_featured_plugins_page #featured-plugins-list li {
29
+ display: inline-table;
30
+ width: 200px;
31
+ margin: 20px 10px 0px 10px;
32
+ background: #FFFFFF;
33
+ border-right: 3px solid #E5E5E5;
34
+ height: 335px;
35
+ border-bottom: 3px solid #E5E5E5;
36
+ position: relative;
37
  }
38
 
39
+ #main_featured_plugins_page #featured-plugins-list li .product {
40
  position:relative;
41
  height:113px;
42
+ background-color: transparent !important;
43
  background-position-x: 50% !important;
44
  margin: 7px;
 
45
  border-radius: 3px;
46
+ background-size: 115px !important;
47
  }
48
 
49
+ #main_featured_plugins_page #featured-plugins-list li .title {
50
  width: 90%;
51
  text-align: center;
 
52
  margin: 0 auto;
53
  }
54
 
73
  #main_featured_plugins_page #featured-plugins-list li.faq_wd .product {background:url("images/faq_wd.png") center center no-repeat;}
74
  #main_featured_plugins_page #featured-plugins-list li.instagram_feed .product {background:url("images/instagram_feed.png") center center no-repeat;}
75
 
76
+ #main_featured_plugins_page #featured-plugins-list li .title .heading {
77
  display: block;
78
+ position: relative;
79
+ font-size: 17px;
80
+ color: #767676;
81
+ margin: 13px 0px 13px 0px;
82
+ text-transform: uppercase;
83
  }
84
 
85
+ #main_featured_plugins_page #featured-plugins-list li .title p {
86
+ font-size:14px;
87
+ color:#444;
88
+ margin-left:20px;
89
  }
90
 
91
+ #main_featured_plugins_page #featured-plugins-list li .description {
92
  height: 127px;
93
  width: 90%;
94
  margin: 0 auto;
95
  }
96
 
97
+ #main_featured_plugins_page #featured-plugins-list li .description p {
98
  text-align: center;
99
  width: 100%;
100
+ color: #9A9A9A;
101
+ font-family: Segoe UI Light;
102
  }
103
 
104
  #featured-plugins-list li a.download {
105
  display: block;
106
+ border-top: 1px solid #CACACA;
107
+ outline: none;
108
+ width: 90%;
109
+ margin: 0 auto;
110
+ font-size: 14px;
111
+ line-height: 40px;
112
+ text-decoration: none;
113
+ font-weight: bolder;
114
+ text-align: center;
115
+ color: #134D68;
116
+ position: absolute;
117
+ text-transform: uppercase;
118
+ bottom: 0;
119
+ left: 10px;
120
+ font-family: Segoe UI Black;
121
+ text-shadow: 1px 0;
122
+ }
123
+
124
+ #featured-plugins-list li a.download:hover {
125
+ color: #F47629;
126
+ }
127
+
128
+ .featured_header{
129
+ background: #FFFFFF;
130
+ border-right: 3px solid #E5E5E5;
131
+ border-bottom: 3px solid #E5E5E5;
132
+ position: relative;
133
+ padding: 20px 0;
134
+ }
135
+
136
+ .featured_header .old_price {
137
+ color: rgba(180, 180, 180, 0.3);
138
+ text-decoration: line-through;
139
+ font-family: Oswald;
140
+ }
141
+
142
+ .featured_header h1.get_plugins {
143
+ color: #FFFFFF;
144
+ background:url("images/featured_plugins_bg.png") no-repeat;
145
+ height: 85px;
146
+ margin: 0;
147
+ background-size: 85% 100%;
148
+ background-position: center;
149
+ line-height: 60px;
150
+ }
151
+
152
+ .featured_header h1 {
153
+ font-size: 50px;
154
+ text-align: center;
155
+ color: #F47629;
156
+ letter-spacing: 3px;
157
+ text-transform: uppercase;
158
+ }
159
+
160
+ .featured_header a {
161
+ text-decoration: none;
162
+ }
163
+
164
+ @media screen and (max-width: 1105px) {
165
+ .featured_header h1 {
166
+ font-size: 37px;
167
+ line-height: 0;
168
+ }
169
+ }
170
+
171
+ @media screen and (max-width: 835px) {
172
+ .get_plugins span {
173
+ display: none;
174
+ }
175
+ }
176
+
177
+ @media screen and (max-width: 700px) {
178
+ .featured_header h1 {
179
+ line-height: 40px;
180
+ }
181
+ }
182
+
183
+ @media screen and (max-width: 435px) {
184
+ .featured_header h1 {
185
+ font-size: 20px;
186
+ line-height: 25px;
187
+ }
188
  }
featured/themes_style.css CHANGED
@@ -1,47 +1,45 @@
1
- #main_featured_themes_page h3 {
2
- border-bottom: 2px solid rgb(111, 111, 111);
3
- color: rgb(111, 111, 111);
4
- font-family: Segoe UI;
5
- font-size: 30px;
6
- margin: 0px;
7
- padding: 20px 0;
8
- width: 99%;
9
- }
10
 
11
  #main_featured_themes_page #featured-plugins-list {
12
- position:relative;
13
- margin:0px auto;
14
- width: 95.4%;
15
- height:auto;
16
- display:table;
17
- list-style:none;
18
- margin-left: 38px;
19
  }
20
 
21
  #main_featured_themes_page #featured-plugins-list li {
22
- float: left;
23
- width: 17%;
24
- margin: 20px 0px 0px 25px;
25
  background: #FFFFFF;
26
- border: 1px solid #B8B8B8;
27
- height: 405px;
 
 
28
  }
29
 
30
- #main_featured_themes_page #featured-plugins-list li .product {
31
  position:relative;
32
  height: 168px;
33
  background-color: #F1F1F1 !important;
34
  background-size: 100% !important;
35
  }
36
 
37
- #main_featured_themes_page #featured-plugins-list li .title {
38
- width: 90%;
39
  text-align: center;
40
- border-bottom: 1px solid #cacaca;
41
  margin: 0 auto;
42
  }
43
 
 
 
 
 
44
  #main_featured_themes_page #featured-plugins-list li.sauron .product {background:url("images/sauron.jpg") left center no-repeat;}
 
45
  #main_featured_themes_page #featured-plugins-list li.business_elite .product {background:url("images/business_elite.jpg") left center no-repeat;}
46
  #main_featured_themes_page #featured-plugins-list li.mottomag .product {background:url("images/mottomag.jpg") left center no-repeat; }
47
  #main_featured_themes_page #featured-plugins-list li.business_world .product {background:url("images/business_world.jpg") left center no-repeat;}
@@ -50,40 +48,117 @@
50
  #main_featured_themes_page #featured-plugins-list li.magazine .product {background:url("images/magazine.jpg") left center no-repeat;}
51
  #main_featured_themes_page #featured-plugins-list li.weddings .product {background:url("images/wedding.jpg") left center no-repeat;}
52
  #main_featured_themes_page #featured-plugins-list li.exclusive .product {background:url("images/exclusive.jpg") left center no-repeat;}
53
- #main_featured_themes_page #featured-plugins-list li.expert .product {background:url("images/expert.jpg") left center no-repeat;}
54
 
55
- #main_featured_themes_page #featured-plugins-list li .title .heading {
56
  display: block;
57
- position: relative;
58
- font-size: 15px;
59
- color: #23282C;
60
- margin: 13px 0px 13px 0px;
 
61
  }
62
 
63
- #main_featured_themes_page #featured-plugins-list li .title p {
64
- font-size: 14px;
65
- color: #444;
66
- margin-left: 20px;
67
  }
68
 
69
- #main_featured_themes_page #featured-plugins-list li .description {
70
- height: 130px;
71
  width: 90%;
72
  margin: 0 auto;
73
  }
74
 
75
- #main_featured_themes_page #featured-plugins-list li .description p {
76
  text-align: center;
77
- width: 100%;
 
 
78
  }
79
 
80
  #featured-plugins-list li a.download {
81
  display: block;
82
- height: 32px;
83
- text-indent: -9999px;
84
- background: url("images/download_themes.png") center 17px no-repeat;
85
- border-top: 1px solid #CACACA;
86
- outline: none;
87
- width: 90%;
88
- margin: 0 auto;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  }
1
+ @import url(http://fonts.googleapis.com/css?family=Oswald);
 
 
 
 
 
 
 
 
2
 
3
  #main_featured_themes_page #featured-plugins-list {
4
+ position: relative;
5
+ margin: 0px auto;
6
+ height: auto;
7
+ display: table;
8
+ list-style: none;
9
+ text-align: center;
10
+ width: 100%;
11
  }
12
 
13
  #main_featured_themes_page #featured-plugins-list li {
14
+ display: inline-table;
15
+ width: 245px;
16
+ margin: 20px 10px 0px 10px;
17
  background: #FFFFFF;
18
+ border-right: 3px solid #E5E5E5;
19
+ height: 405px;
20
+ border-bottom: 3px solid #E5E5E5;
21
+ position: relative;
22
  }
23
 
24
+ #main_featured_themes_page #featured-plugins-list li .product {
25
  position:relative;
26
  height: 168px;
27
  background-color: #F1F1F1 !important;
28
  background-size: 100% !important;
29
  }
30
 
31
+ #main_featured_themes_page #featured-plugins-list li .title {
32
+ width: 91%;
33
  text-align: center;
 
34
  margin: 0 auto;
35
  }
36
 
37
+ #main_featured_themes_page {
38
+ font-family: Oswald;
39
+ }
40
+
41
  #main_featured_themes_page #featured-plugins-list li.sauron .product {background:url("images/sauron.jpg") left center no-repeat;}
42
+ #main_featured_themes_page #featured-plugins-list li.portfolio .product {background:url("images/portfolio.png") left center no-repeat;}
43
  #main_featured_themes_page #featured-plugins-list li.business_elite .product {background:url("images/business_elite.jpg") left center no-repeat;}
44
  #main_featured_themes_page #featured-plugins-list li.mottomag .product {background:url("images/mottomag.jpg") left center no-repeat; }
45
  #main_featured_themes_page #featured-plugins-list li.business_world .product {background:url("images/business_world.jpg") left center no-repeat;}
48
  #main_featured_themes_page #featured-plugins-list li.magazine .product {background:url("images/magazine.jpg") left center no-repeat;}
49
  #main_featured_themes_page #featured-plugins-list li.weddings .product {background:url("images/wedding.jpg") left center no-repeat;}
50
  #main_featured_themes_page #featured-plugins-list li.exclusive .product {background:url("images/exclusive.jpg") left center no-repeat;}
51
+ #main_featured_themes_page #featured-plugins-list li.expert .product {background:url("images/expert.jpg") left center no-repeat; background-size: 80%;}
52
 
53
+ #main_featured_themes_page #featured-plugins-list li .title .heading {
54
  display: block;
55
+ position: relative;
56
+ font-size: 17px;
57
+ color: #767676;
58
+ margin: 13px 0px 13px 0px;
59
+ text-transform: uppercase;
60
  }
61
 
62
+ #main_featured_themes_page #featured-plugins-list li .title p {
63
+ font-size:14px;
64
+ color:#444;
65
+ margin-left:20px;
66
  }
67
 
68
+ #main_featured_themes_page #featured-plugins-list li .description {
69
+ height:130px;
70
  width: 90%;
71
  margin: 0 auto;
72
  }
73
 
74
+ #main_featured_themes_page #featured-plugins-list li .description p {
75
  text-align: center;
76
+ width: 100%;
77
+ color: #9A9A9A;
78
+ font-family: "Open Sans",sans-serif;
79
  }
80
 
81
  #featured-plugins-list li a.download {
82
  display: block;
83
+ border-top: 1px solid #CACACA;
84
+ outline: none;
85
+ width: 90%;
86
+ margin: 0 auto;
87
+ font-size: 14px;
88
+ line-height: 40px;
89
+ text-decoration: none;
90
+ font-weight: bolder;
91
+ text-align: center;
92
+ color: #134D68;
93
+ position: absolute;
94
+ text-transform: uppercase;
95
+ bottom: 0;
96
+ left: 10px;
97
+ font-family: "Open Sans",sans-serif;
98
+ text-shadow: 1px 0;
99
+ }
100
+
101
+ #featured-plugins-list li a.download:hover {
102
+ color: #F47629;
103
+ }
104
+
105
+ .featured_header > div {
106
+ background: #FFFFFF;
107
+ border-right: 3px solid #E5E5E5;
108
+ border-bottom: 3px solid #E5E5E5;
109
+ padding: 20px 0;
110
+ }
111
+
112
+ .featured_header {
113
+ position: relative;
114
+ width: 90%;
115
+ margin: 15px auto 0px auto;
116
+ }
117
+
118
+ .featured_header .old_price {
119
+ color: rgba(180, 180, 180, 0.3);
120
+ text-decoration: line-through;
121
+ font-family: Oswald;
122
+ }
123
+
124
+ .featured_header h1.get_plugins {
125
+ color: #FFFFFF;
126
+ background: url("images/featured_plugins_bg.png") no-repeat;
127
+ height: 85px;
128
+ margin: 0;
129
+ background-size: 95% 100%;
130
+ background-position: center;
131
+ line-height: 60px;
132
+ }
133
+
134
+ .featured_header h1 {
135
+ font-size: 45px;
136
+ text-align: center;
137
+ color: #F47629;
138
+ letter-spacing: 3px;
139
+ line-height: 10px;
140
+ }
141
+
142
+ .featured_header a {
143
+ text-decoration: none;
144
+ }
145
+
146
+ @media screen and (max-width: 1035px) {
147
+ .featured_header h1 {
148
+ font-size: 37px;
149
+ line-height: 0;
150
+ }
151
+ }
152
+
153
+ @media screen and (max-width: 835px) {
154
+ .get_plugins span {
155
+ display: none;
156
+ }
157
+ }
158
+
159
+ @media screen and (max-width: 435px) {
160
+ .featured_header h1 {
161
+ font-size: 20px;
162
+ line-height: 17px;
163
+ }
164
  }
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://web-dorado.com/products/wordpress-contact-form-builder.html
4
  Tags: form, forms, contact form, contact forms, contact form plugin, contact forms plugin, forms plugin, Contact Form Builder, contact form manager, multiple contact forms, custom form, Contact Form Builder with recaptcha, contact form with google map, feedback form, feedback forms, contact us, wordpress contact form, email form, feedback, web form, contact me, email, contact manager, contact us form, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, text input, validation, send copy, form with captcha, advanced form, recaptcha, contact form with captcha
5
  Requires at least: 3.4
6
  Tested up to: 4.4
7
- Stable tag: 1.0.39
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -138,6 +138,9 @@ After downloading the ZIP file,
138
 
139
  == Changelog ==
140
 
 
 
 
141
 
142
  = 1.0.39 =
143
  Fixed: Email from name with quotes.
4
  Tags: form, forms, contact form, contact forms, contact form plugin, contact forms plugin, forms plugin, Contact Form Builder, contact form manager, multiple contact forms, custom form, Contact Form Builder with recaptcha, contact form with google map, feedback form, feedback forms, contact us, wordpress contact form, email form, feedback, web form, contact me, email, contact manager, contact us form, admin, captcha, contact, database, email, javascript, jquery, page, plugin, survey, widget, custom form, forms creator, text input, validation, send copy, form with captcha, advanced form, recaptcha, contact form with captcha
5
  Requires at least: 3.4
6
  Tested up to: 4.4
7
+ Stable tag: 1.0.40
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
138
 
139
  == Changelog ==
140
 
141
+ = 1.0.40 =
142
+ Added: Optional delimiter for exported csv.
143
+ Changed: Featured plugins page.
144
 
145
  = 1.0.39 =
146
  Fixed: Email from name with quotes.