Version Description
- Changed: Featured Themes page
Download this release
Release Info
Developer | webdorado |
Plugin | Contact Form Builder – a plugin for creating contact and feedback forms |
Version | 1.0.51 |
Comparing to | |
See all releases |
Code changes from version 1.0.50 to 1.0.51
- contact-form-builder.php +2 -2
- featured/featured_themes.php +102 -90
- featured/images/best_magazine.jpg +0 -0
- featured/images/business_elite.jpg +0 -0
- featured/images/business_world.jpg +0 -0
- featured/images/down.png +0 -0
- featured/images/news_magazine.jpg +0 -0
- featured/images/portfolio.png +0 -0
- featured/images/portfolio_gallery.jpg +0 -0
- featured/images/sauron.jpg +0 -0
- featured/themes_style.css +174 -182
- readme.txt +6 -3
contact-form-builder.php
CHANGED
@@ -3,14 +3,14 @@
|
|
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.
|
7 |
* Author: WebDorado
|
8 |
* Author URI: http://web-dorado.com/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
*/
|
11 |
define('WD_CFM_DIR', WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__)));
|
12 |
define('WD_CFM_URL', plugins_url(plugin_basename(dirname(__FILE__))));
|
13 |
-
define('WD_CFM_VERSION', '1.0.
|
14 |
|
15 |
// Plugin menu.
|
16 |
function contact_form_maker_options_panel() {
|
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.51
|
7 |
* Author: WebDorado
|
8 |
* Author URI: http://web-dorado.com/
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
*/
|
11 |
define('WD_CFM_DIR', WP_PLUGIN_DIR . "/" . plugin_basename(dirname(__FILE__)));
|
12 |
define('WD_CFM_URL', plugins_url(plugin_basename(dirname(__FILE__))));
|
13 |
+
define('WD_CFM_VERSION', '1.0.51');
|
14 |
|
15 |
// Plugin menu.
|
16 |
function contact_form_maker_options_panel() {
|
featured/featured_themes.php
CHANGED
@@ -1,92 +1,104 @@
|
|
1 |
<?php
|
2 |
-
function spider_featured_themes(
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
|
|
69 |
</div>
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<?php
|
2 |
+
function spider_featured_themes() {
|
3 |
+
|
4 |
+
$slug = 'contact-form-builder';
|
5 |
+
$image_url = WD_CFM_URL . "/featured/images/";
|
6 |
+
$demo_url = 'http://themedemo.web-dorado.com/';
|
7 |
+
$site_url = 'https://web-dorado.com/wordpress-themes/';
|
8 |
+
|
9 |
+
|
10 |
+
$WDWThemes = array(
|
11 |
+
"business_elite" => array(
|
12 |
+
"title" => "Business Elite",
|
13 |
+
"description" =>"Business Elite is a robust parallax theme for business websites. The theme uses smooth transitions and many functional sections.",
|
14 |
+
"link" => "business-elite.html",
|
15 |
+
"demo" => "theme-businesselite",
|
16 |
+
"image" => "business_elite.jpg"
|
17 |
+
),
|
18 |
+
"portfolio" => array(
|
19 |
+
"title" => "Portfolio Gallery",
|
20 |
+
"description" =>"Portfolio Gallery helps to display images using various color schemes and layouts combined with elegant fonts and content parts.",
|
21 |
+
"link" => "portfolio-gallery.html",
|
22 |
+
"demo" => "theme-portfoliogallery",
|
23 |
+
"image" => "portfolio_gallery.jpg"
|
24 |
+
),
|
25 |
+
"sauron" => array(
|
26 |
+
"title" => "Sauron",
|
27 |
+
"description" =>"Sauron is a multipurpose parallax theme, which uses multiple interactive sections designed for the client-engagement.",
|
28 |
+
"link" => "sauron.html",
|
29 |
+
"demo" => "theme-sauron",
|
30 |
+
"image" => "sauron.jpg"
|
31 |
+
),
|
32 |
+
"business_world" => array(
|
33 |
+
"title" => "Business World",
|
34 |
+
"description" => "Business World is an innovative WordPress theme great for Business websites.",
|
35 |
+
"link" => "business-world.html",
|
36 |
+
"demo" => "theme-businessworld",
|
37 |
+
"image" => "business_world.jpg"
|
38 |
+
),
|
39 |
+
"best_magazine" => array(
|
40 |
+
"title" => "Best Magazine",
|
41 |
+
"description" =>"Best Magazine is an ultimate selection when you are dealing with multi-category news websites.",
|
42 |
+
"link" => "best-magazine.html",
|
43 |
+
"demo" => "theme-bestmagazine",
|
44 |
+
"image" => "best_magazine.jpg"
|
45 |
+
),
|
46 |
+
"magazine" => array(
|
47 |
+
"title" => "News Magazine",
|
48 |
+
"description" =>"Magazine theme is a perfect solution when creating news and informational websites. It comes with a wide range of layout options.",
|
49 |
+
"link" => "news-magazine.html",
|
50 |
+
"demo" => "theme-newsmagazine",
|
51 |
+
"image" => "news_magazine.jpg"
|
52 |
+
)
|
53 |
+
);
|
54 |
+
?>
|
55 |
+
|
56 |
+
<style>
|
57 |
+
|
58 |
+
#main_featured_themes_page #featured-themes-list li a.download {
|
59 |
+
padding-right: 30px;
|
60 |
+
background:url(<?php echo $image_url; ?>down.png) no-repeat right;
|
61 |
+
}
|
62 |
+
|
63 |
+
</style>
|
64 |
+
|
65 |
+
|
66 |
+
<div id="main_featured_themes_page">
|
67 |
+
<div class="featured_container">
|
68 |
+
<div class="page_header">
|
69 |
+
<h1><?php echo "Featured Themes"; ?></h1>
|
70 |
</div>
|
71 |
+
<div class="featured_header">
|
72 |
+
<a target="_blank" href="https://web-dorado.com/wordpress-themes.html?source=<?php echo $slug; ?>">
|
73 |
+
<h1><?php echo "WORDPRESS THEMES"; ?></h1>
|
74 |
+
<h2 class="get_themes"><?php echo "ALL FOR $40 ONLY "; ?><span>- <?php echo "SAVE 80%"; ?></span></h2>
|
75 |
+
<div class="try-now">
|
76 |
+
<span><?php echo "TRY NOW"; ?></span>
|
77 |
+
</div>
|
78 |
+
</a>
|
79 |
+
</div>
|
80 |
+
<ul id="featured-themes-list">
|
81 |
+
<?php foreach($WDWThemes as $key=>$WDWTheme) : ?>
|
82 |
+
<li class="<?php echo $key; ?>">
|
83 |
+
<div class="theme_img">
|
84 |
+
<img src="<?php echo $image_url . $WDWTheme["image"]; ?>">
|
85 |
+
</div>
|
86 |
+
<div class="title">
|
87 |
+
<h3 class="heading"><?php echo $WDWTheme["title"]; ?></h3>
|
88 |
+
</div>
|
89 |
+
<div class="description">
|
90 |
+
<p><?php echo $WDWTheme["description"]; ?></p>
|
91 |
+
</div>
|
92 |
+
<div class="links">
|
93 |
+
<a target="_blank" href="<?php echo $demo_url . $WDWTheme["demo"]."?source=".$slug; ?>" class="demo"><?php echo "Demo"; ?></a>
|
94 |
+
<a target="_blank" href="<?php echo $site_url . $WDWTheme["link"]."?source=".$slug; ?>" class="download"><?php echo "Free Download"; ?></a>
|
95 |
+
</div>
|
96 |
+
</li>
|
97 |
+
<?php endforeach; ?>
|
98 |
+
</ul>
|
99 |
+
</div>
|
100 |
+
</div>
|
101 |
+
|
102 |
+
|
103 |
+
<?php }
|
104 |
+
?>
|
featured/images/best_magazine.jpg
CHANGED
Binary file
|
featured/images/business_elite.jpg
CHANGED
Binary file
|
featured/images/business_world.jpg
CHANGED
Binary file
|
featured/images/down.png
ADDED
Binary file
|
featured/images/news_magazine.jpg
ADDED
Binary file
|
featured/images/portfolio.png
DELETED
Binary file
|
featured/images/portfolio_gallery.jpg
ADDED
Binary file
|
featured/images/sauron.jpg
CHANGED
Binary file
|
featured/themes_style.css
CHANGED
@@ -1,186 +1,178 @@
|
|
1 |
-
@import url(
|
2 |
-
|
3 |
-
#main_featured_themes_page #featured-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
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 |
-
width: 90%;
|
39 |
-
margin: 15px auto 0px auto;
|
40 |
-
}
|
41 |
-
|
42 |
-
#main_featured_themes_page h3 {
|
43 |
-
border-bottom: 2px solid #CECECE;
|
44 |
-
color: rgb(111, 111, 111);
|
45 |
-
font-family: Segoe UI;
|
46 |
-
font-size: 18pt;
|
47 |
-
margin: 0px auto 15px auto;
|
48 |
-
padding: 20px 0;
|
49 |
-
}
|
50 |
-
|
51 |
-
#main_featured_themes_page #featured-plugins-list li.sauron .product {background:url("images/sauron.jpg") left center no-repeat;}
|
52 |
-
#main_featured_themes_page #featured-plugins-list li.portfolio_gallery .product {background:url("images/portfolio.png") left center no-repeat;}
|
53 |
-
#main_featured_themes_page #featured-plugins-list li.business_elite .product {background:url("images/business_elite.jpg") left center no-repeat;}
|
54 |
-
#main_featured_themes_page #featured-plugins-list li.mottomag .product {background:url("images/mottomag.jpg") left center no-repeat; }
|
55 |
-
#main_featured_themes_page #featured-plugins-list li.business_world .product {background:url("images/business_world.jpg") left center no-repeat;}
|
56 |
-
#main_featured_themes_page #featured-plugins-list li.best_magazine .product {background:url("images/best_magazine.jpg") left center no-repeat;}
|
57 |
-
#main_featured_themes_page #featured-plugins-list li.wedding_style .product {background:url("images/wedding_style.jpg") left center no-repeat;}
|
58 |
-
#main_featured_themes_page #featured-plugins-list li.magazine .product {background:url("images/magazine.jpg") left center no-repeat;}
|
59 |
-
#main_featured_themes_page #featured-plugins-list li.weddings .product {background:url("images/wedding.jpg") left center no-repeat;}
|
60 |
-
#main_featured_themes_page #featured-plugins-list li.exclusive .product {background:url("images/exclusive.jpg") left center no-repeat;}
|
61 |
-
#main_featured_themes_page #featured-plugins-list li.expert .product {background:url("images/expert.jpg") left center no-repeat; background-size: 80%;}
|
62 |
-
|
63 |
-
#main_featured_themes_page #featured-plugins-list li .title .heading {
|
64 |
-
display: block;
|
65 |
-
position: relative;
|
66 |
-
font-size: 17px;
|
67 |
-
color: #767676;
|
68 |
-
margin: 13px 0px 13px 0px;
|
69 |
-
text-transform: uppercase;
|
70 |
-
}
|
71 |
-
|
72 |
-
#main_featured_themes_page #featured-plugins-list li .title p {
|
73 |
-
font-size:14px;
|
74 |
-
color:#444;
|
75 |
-
margin-left:20px;
|
76 |
-
}
|
77 |
-
|
78 |
-
#main_featured_themes_page #featured-plugins-list li .description {
|
79 |
-
height:130px;
|
80 |
-
width: 90%;
|
81 |
-
margin: 0 auto;
|
82 |
-
}
|
83 |
-
|
84 |
-
#main_featured_themes_page #featured-plugins-list li .description p {
|
85 |
-
text-align: center;
|
86 |
-
width: 100%;
|
87 |
-
color: #9A9A9A;
|
88 |
-
font-family: "Open Sans",sans-serif;
|
89 |
-
}
|
90 |
-
|
91 |
-
#featured-plugins-list li a.download {
|
92 |
-
display: block;
|
93 |
-
border-top: 1px solid #CACACA;
|
94 |
-
outline: none;
|
95 |
-
width: 90%;
|
96 |
-
margin: 0 auto;
|
97 |
-
font-size: 14px;
|
98 |
-
line-height: 40px;
|
99 |
-
text-decoration: none;
|
100 |
-
font-weight: bolder;
|
101 |
-
text-align: center;
|
102 |
-
color: #134D68;
|
103 |
-
position: absolute;
|
104 |
-
text-transform: uppercase;
|
105 |
-
bottom: 0;
|
106 |
-
left: 10px;
|
107 |
-
font-family: "Open Sans",sans-serif;
|
108 |
-
text-shadow: 1px 0;
|
109 |
-
}
|
110 |
-
|
111 |
-
#featured-plugins-list li a.download:hover {
|
112 |
-
color: #F47629;
|
113 |
-
}
|
114 |
-
|
115 |
-
.featured_header {
|
116 |
-
background: #11465F;
|
117 |
-
border-right: 3px solid #E5E5E5;
|
118 |
-
border-bottom: 3px solid #E5E5E5;
|
119 |
-
position: relative;
|
120 |
-
padding: 20px 0;
|
121 |
-
}
|
122 |
-
|
123 |
-
.featured_header .old_price {
|
124 |
-
color: rgba(180, 180, 180, 0.3);
|
125 |
-
text-decoration: line-through;
|
126 |
-
font-family: Oswald;
|
127 |
-
}
|
128 |
-
|
129 |
-
.featured_header h1.get_plugins {
|
130 |
-
color: #FFFFFF;
|
131 |
-
height: 85px;
|
132 |
-
margin: 0;
|
133 |
-
background-size: 85% 100%;
|
134 |
-
background-position: center;
|
135 |
-
line-height: 60px;
|
136 |
-
}
|
137 |
-
|
138 |
-
.featured_header .try-now{
|
139 |
-
text-align: center;
|
140 |
-
}
|
141 |
-
|
142 |
-
.featured_header .try-now span {
|
143 |
-
display: inline-block;
|
144 |
-
padding: 7px 16px;
|
145 |
-
background: #F47629;
|
146 |
-
border-radius: 10px;
|
147 |
-
color: #ffffff;
|
148 |
-
font-size: 23px;
|
149 |
-
}
|
150 |
-
|
151 |
-
.featured_header h1 {
|
152 |
-
font-size: 50px;
|
153 |
-
text-align: center;
|
154 |
-
color: #FFFFFF;
|
155 |
-
letter-spacing: 3px;
|
156 |
-
text-transform: uppercase;
|
157 |
-
}
|
158 |
-
|
159 |
-
.featured_header a {
|
160 |
-
text-decoration: none;
|
161 |
-
}
|
162 |
-
|
163 |
-
.featured_header .old-price {
|
164 |
-
color: #889CA8;
|
165 |
-
text-decoration: line-through;
|
166 |
-
}
|
167 |
-
|
168 |
-
@media screen and (max-width: 1035px) {
|
169 |
-
.featured_header h1 {
|
170 |
-
font-size: 37px;
|
171 |
-
line-height: 0;
|
172 |
}
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
|
|
|
|
|
|
178 |
}
|
179 |
-
|
|
|
|
|
|
|
180 |
|
181 |
-
@media screen and (max-width: 435px) {
|
182 |
-
.featured_header h1 {
|
183 |
-
font-size: 20px;
|
184 |
-
line-height: 17px;
|
185 |
}
|
186 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@import url(https://fonts.googleapis.com/css?family=Oswald);
|
2 |
+
|
3 |
+
#main_featured_themes_page #featured-themes-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 |
+
#main_featured_themes_page #featured-themes-list li {
|
13 |
+
display: inline-table;
|
14 |
+
width: 300px;
|
15 |
+
margin: 20px 10px 0px 10px;
|
16 |
+
background: #FFFFFF;
|
17 |
+
border-right: 3px solid #E5E5E5;
|
18 |
+
border-bottom: 3px solid #E5E5E5;
|
19 |
+
position: relative;
|
20 |
}
|
21 |
+
@media screen and (min-width: 1600px) {
|
22 |
+
#main_featured_themes_page #featured-themes-list li {
|
23 |
+
width:400px;
|
24 |
+
}
|
25 |
|
|
|
|
|
|
|
|
|
26 |
}
|
27 |
+
#main_featured_themes_page .theme_img img {
|
28 |
+
max-width: 100%;
|
29 |
+
}
|
30 |
+
#main_featured_themes_page .theme_img {
|
31 |
+
display: inline-block;
|
32 |
+
overflow: hidden;
|
33 |
+
outline: 1px solid #D6D1D1;
|
34 |
+
position:relative;
|
35 |
+
/*height: 168px; */
|
36 |
+
}
|
37 |
+
#main_featured_themes_page #featured-themes-list li .title {
|
38 |
+
width: 91%;
|
39 |
+
text-align: center;
|
40 |
+
margin: 0 auto;
|
41 |
+
}
|
42 |
+
#main_featured_themes_page {
|
43 |
+
font-family: Oswald;
|
44 |
+
}
|
45 |
+
#main_featured_themes_page #featured-themes-list li .title .heading {
|
46 |
+
display: block;
|
47 |
+
position: relative;
|
48 |
+
font-size: 17px;
|
49 |
+
color: #666666;
|
50 |
+
margin: 13px 0px 13px 0px;
|
51 |
+
text-transform: uppercase;
|
52 |
+
}
|
53 |
+
#main_featured_themes_page #featured-themes-list li .title p {
|
54 |
+
font-size:14px;
|
55 |
+
color:#444;
|
56 |
+
margin-left:20px;
|
57 |
+
}
|
58 |
+
#main_featured_themes_page #featured-themes-list li .description {
|
59 |
+
height:130px;
|
60 |
+
width: 90%;
|
61 |
+
margin: 0 auto;
|
62 |
+
}
|
63 |
+
#main_featured_themes_page #featured-themes-list li .description p {
|
64 |
+
text-align: center;
|
65 |
+
width: 100%;
|
66 |
+
color: #666666;
|
67 |
+
font-family: "Open Sans",sans-serif;
|
68 |
+
font-size: 14px;
|
69 |
+
}
|
70 |
+
#main_featured_themes_page #featured-themes-list li .links {
|
71 |
+
border-top: 1px solid #d8d8d8;
|
72 |
+
width: 90%;
|
73 |
+
margin: 0 auto;
|
74 |
+
font-size: 14px;
|
75 |
+
line-height: 40px;
|
76 |
+
font-weight: bolder;
|
77 |
+
text-align: center;
|
78 |
+
padding-top: 9px;
|
79 |
+
padding-bottom: 12px;
|
80 |
+
}
|
81 |
+
#main_featured_themes_page .page_header h1 {
|
82 |
+
margin: 0px;
|
83 |
+
font-family: Segoe UI;
|
84 |
+
padding-bottom: 15px;
|
85 |
+
color: rgb(111, 111, 111);
|
86 |
+
font-size: 24px;
|
87 |
+
text-align:center;
|
88 |
+
}
|
89 |
+
#main_featured_themes_page .page_header {
|
90 |
+
height: 40px;
|
91 |
+
padding: 22px 0px 0px 0px;
|
92 |
+
margin-bottom: 15px;
|
93 |
+
/*border-bottom: rgb(111, 111, 111) solid 1px;*/
|
94 |
+
}
|
95 |
+
#main_featured_themes_page #featured-themes-list li a {
|
96 |
+
outline: none;
|
97 |
+
line-height: 29px;
|
98 |
+
text-decoration: none;
|
99 |
+
color: #134d68;
|
100 |
+
font-family: "Open Sans",sans-serif;
|
101 |
+
text-shadow: 1px 0;
|
102 |
+
display: inline-block;
|
103 |
+
font-size: 15px;
|
104 |
+
}
|
105 |
+
#main_featured_themes_page #featured-themes-list li a.demo {
|
106 |
+
color: #ffffff;
|
107 |
+
background: #F47629;
|
108 |
+
border-radius: 3px;
|
109 |
+
width: 76px;
|
110 |
+
text-align:center;
|
111 |
+
margin-right: 12px;
|
112 |
+
}
|
113 |
+
#main_featured_themes_page .featured_header{
|
114 |
+
background: #11465F;
|
115 |
+
border-right: 3px solid #E5E5E5;
|
116 |
+
border-bottom: 3px solid #E5E5E5;
|
117 |
+
position: relative;
|
118 |
+
padding: 20px 0;
|
119 |
+
}
|
120 |
+
#main_featured_themes_page .featured_header .try-now {
|
121 |
+
text-align: center;
|
122 |
+
}
|
123 |
+
#main_featured_themes_page .featured_header .try-now span {
|
124 |
+
display: inline-block;
|
125 |
+
padding: 7px 16px;
|
126 |
+
background: #F47629;
|
127 |
+
border-radius: 10px;
|
128 |
+
color: #ffffff;
|
129 |
+
font-size: 23px;
|
130 |
+
}
|
131 |
+
#main_featured_themes_page .featured_container {
|
132 |
+
position: relative;
|
133 |
+
width: 90%;
|
134 |
+
margin: 15px auto 0px auto;
|
135 |
+
}
|
136 |
+
#main_featured_themes_page .featured_container .old_price{
|
137 |
+
color: rgba(180, 180, 180, 0.3);
|
138 |
+
text-decoration: line-through;
|
139 |
+
font-family: Oswald;
|
140 |
+
}
|
141 |
+
#main_featured_themes_page .featured_container .get_themes{
|
142 |
+
color: #FFFFFF;
|
143 |
+
height: 85px;
|
144 |
+
margin: 0;
|
145 |
+
background-size: 95% 100%;
|
146 |
+
background-position: center;
|
147 |
+
line-height: 60px;
|
148 |
+
font-size: 45px;
|
149 |
+
text-align: center;
|
150 |
+
letter-spacing: 3px;
|
151 |
+
}
|
152 |
+
#main_featured_themes_page .featured_header h1{
|
153 |
+
font-size: 45px;
|
154 |
+
text-align: center;
|
155 |
+
color: #ffffff;
|
156 |
+
letter-spacing: 3px;
|
157 |
+
line-height: 10px;
|
158 |
+
}
|
159 |
+
#main_featured_themes_page .featured_header a{
|
160 |
+
text-decoration: none;
|
161 |
+
}
|
162 |
+
@media screen and (max-width: 1035px) {
|
163 |
+
#main_featured_themes_page .featured_header h1{
|
164 |
+
font-size: 37px;
|
165 |
+
line-height: 0;
|
166 |
+
}
|
167 |
+
}
|
168 |
+
@media screen and (max-width: 835px) {
|
169 |
+
#main_featured_themes_page .get_themes span{
|
170 |
+
display: none;
|
171 |
+
}
|
172 |
+
}
|
173 |
+
@media screen and (max-width: 435px) {
|
174 |
+
#main_featured_themes_page .featured_header h1 {
|
175 |
+
font-size: 20px;
|
176 |
+
line-height: 17px;
|
177 |
+
}
|
178 |
+
}
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://web-dorado.com/products/wordpress-contact-form-builder.html
|
|
4 |
Tags: captcha, contact, contact form, contact forms, custom form, email, feedback, form, form builder, form manager, forms, survey
|
5 |
Requires at least: 3.0.0
|
6 |
Tested up to: 4.6
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -137,10 +137,13 @@ After downloading the ZIP file,
|
|
137 |
|
138 |
|
139 |
== Changelog ==
|
140 |
-
= 1.
|
|
|
|
|
|
|
141 |
* Fixed: Unexpected behaviour on pressing "Enter" key on back end
|
142 |
|
143 |
-
= 1.
|
144 |
* Fixed: JS error on incorrect Google Maps API key
|
145 |
* Added: Alert about incorrect Google Maps API key
|
146 |
* Changed: Featured plugins page.
|
4 |
Tags: captcha, contact, contact form, contact forms, custom form, email, feedback, form, form builder, form manager, forms, survey
|
5 |
Requires at least: 3.0.0
|
6 |
Tested up to: 4.6
|
7 |
+
Stable tag: 1.0.51
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
137 |
|
138 |
|
139 |
== Changelog ==
|
140 |
+
= 1.0.51 =
|
141 |
+
* Changed: Featured Themes page
|
142 |
+
|
143 |
+
= 1.0.50 =
|
144 |
* Fixed: Unexpected behaviour on pressing "Enter" key on back end
|
145 |
|
146 |
+
= 1.0.49 =
|
147 |
* Fixed: JS error on incorrect Google Maps API key
|
148 |
* Added: Alert about incorrect Google Maps API key
|
149 |
* Changed: Featured plugins page.
|