diff --git a/wordpress/wp-content/themes/backer/images/icon-completed.png b/wordpress/wp-content/themes/backer/images/icon-completed.png
new file mode 100644
index 0000000000000000000000000000000000000000..4fceaaf397cd4b11e84cd233e7f425b2ce1f0d14
Binary files /dev/null and b/wordpress/wp-content/themes/backer/images/icon-completed.png differ
diff --git a/wordpress/wp-content/themes/backer/includes/overrides/project-edit.php b/wordpress/wp-content/themes/backer/includes/overrides/project-edit.php
index 494db0a737108bc8ab5715e9dd5a40171a97c5ca..fd29460cd2891a55c0529af234b6af4af100738c 100644
--- a/wordpress/wp-content/themes/backer/includes/overrides/project-edit.php
+++ b/wordpress/wp-content/themes/backer/includes/overrides/project-edit.php
@@ -33,7 +33,7 @@ function override_ign_create_post_type() {
'query_var' => true,
'rewrite' => array( 'slug' => $slug, 'with_front' => true ),
'has_archive' => $slug,
- 'supports' => array('title', 'author', 'thumbnail'),
+ 'supports' => array('title', 'author', 'thumbnail', 'comments'),
'taxonomies' => array('category', 'post_tag', 'project_category'),
)
);
diff --git a/wordpress/wp-content/themes/backer/single-ignition_product.php b/wordpress/wp-content/themes/backer/single-ignition_product.php
index 40b5add0981ca0a2eb216e779c7b90213f909135..eee6e53747351397b5c13ba051bb5a612c62f154 100644
--- a/wordpress/wp-content/themes/backer/single-ignition_product.php
+++ b/wordpress/wp-content/themes/backer/single-ignition_product.php
@@ -73,7 +73,7 @@
if ( $slide != '' ) {
$img = aq_resize( $slide, $retina === 'true' ? 1690 : 845, $retina === 'true' ? 561 : 281, true, false );
- echo '

';
+ echo '
';
}
} ?>
@@ -113,18 +113,13 @@
if($status == 'closed' ){
echo 'Closed
';
} else if($status == 'completed'){
- echo 'Completed
';
+ echo 'Completed!
This project has reached its goal. We’re doing the retrofit!
';
} else {
echo 'Contribute';
}
?>
- $project_id ) );
- // }
- ?>
How does this work?
@@ -396,27 +391,20 @@
+
+
diff --git a/wordpress/wp-content/themes/backer/style.css b/wordpress/wp-content/themes/backer/style.css
index a8e135da59d294ba145f2463fb0215fa0ad5886e..7bcf85ed980630eaa01dd35bb2ba8a68261a596f 100644
--- a/wordpress/wp-content/themes/backer/style.css
+++ b/wordpress/wp-content/themes/backer/style.css
@@ -1925,7 +1925,7 @@ input.terms-checkbox-input {
.memberdeck .right-column {
width: 25%;
- float: left;
+ float: right;
}
.memberdeck .left-column {
@@ -1974,6 +1974,9 @@ input.terms-checkbox-input {
width: auto;
}
+.memberdeck #id-main-submit{
+ margin: 50px 0 0;
+}
/* Notices */
diff --git a/wordpress/wp-content/themes/backer/style1.css b/wordpress/wp-content/themes/backer/style1.css
index de6d445f877beda287311e432794cec424f94c82..0f6ebf13cc92ac18fe3e9fcea97b389194c9bb8f 100644
--- a/wordpress/wp-content/themes/backer/style1.css
+++ b/wordpress/wp-content/themes/backer/style1.css
@@ -10,6 +10,13 @@ section#banner {
margin:0;
min-height: 100px;
}
+#demo1 .item img{
+ width: 100%;
+ visibility: hidden;
+}
+#demo1 .owl-item .item img{
+ visibility: visible;
+}
#banner .owl-item.active{ border-bottom:0;}
#banner .owl-controls{text-align:center; margin:0; border-radius:25px; border:1px solid #dfdfdf; padding:7px 0 5px; z-index:999999999; position:absolute; bottom:30px; left:25%; background:#fff; border:0; height:30px; padding:6px 40px;}
#banner .owl-controls .owl-nav .owl-prev,
@@ -23,6 +30,15 @@ section#banner {
#banner .owl-controls .owl-dots .owl-dot + .owl-dot{ margin-left:10px;}
#banner .owl-controls .owl-dots .owl-dot.active{ background:#d8d8d8;}
+.project-completed{
+ background: url(images/icon-completed.png) no-repeat 0 9px;
+ min-height: 72px;
+ padding-left: 72px;
+}
+.project-completed h4,
+.project-completed p{
+ margin: 0;
+}
#main-content .content-wrap{ padding:20px 0;}
#main-content .content-wrap .box-1 {border-bottom: 2px solid #dfdfdf;}
@@ -52,7 +68,9 @@ section#banner {
.sticky-stop {clear:both;}
#sidebar .howitwork{text-align:center; padding:0 30px;}
-
+#sidebar .howitwork h4{
+ margin-bottom: .5rem;
+}
#sidebar .right-side-box {
border: 1px solid #dfdfdf;
Comments
- - -