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..bf7bd4c3691a1cbfec053e6908aa6bcd16d58a86 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 '
';
}
} ?>
@@ -396,27 +396,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..4829cee59a535e1783a9b406cb958f8a9411ad22 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,
Comments
- - -