diff --git a/css/responsive.css b/css/responsive.css
index 7711192..63adf78 100644
--- a/css/responsive.css
+++ b/css/responsive.css
@@ -388,6 +388,10 @@
bottom: 40%;
}
+ .collection-thumb-block .collection-thumb-hover .collection-thumb-title-wrapper .collection-thumb-title {
+ font-size: 18px;
+ }
+
.widget_featured_posts_block .tg-column-wrapper .tg-column-3 {
display: inline-block;
float: none;
@@ -406,7 +410,7 @@
.tg-column-wrapper .tg-column-4 {
float: left;
margin: 0 0 2% 2%;
- width: 48%;
+ width: 46%;
}
#top-footer .tg-column-wrapper .tg-column-4 {
@@ -502,6 +506,12 @@
}
}
+@media only screen and (min-width: 601px) and (max-width: 768px) and (orientation: landscape) {
+ .collection-thumb-block .collection-thumb-hover .collection-thumb-title-wrapper .collection-thumb-title {
+ font-size: 17px;
+ }
+}
+
@media (max-width: 600px) {
.tg-column-wrapper .tg-column-2,
.tg-column-wrapper .tg-column-3,
@@ -519,6 +529,14 @@
margin: 0px auto;
}
+ .blog-section .tg-column-wrapper .tg-column-3 {
+ border-bottom: 1px solid #e1e1e1;
+ }
+
+ .blog-section .entry-btn {
+ margin-bottom: 20px;
+ }
+
.slider-caption-wrapper .slider-title {
font-size: 25px;
}
@@ -655,3 +673,9 @@
width: 100%;
}
}
+
+@media (max-width: 400px) {
+ .entry-meta span {
+ margin: 10px 2px 10px 0;
+ }
+}
diff --git a/inc/widgets/class-estore-featured-posts-carousel-widget.php b/inc/widgets/class-estore-featured-posts-carousel-widget.php
index 682ad37..bc483f9 100644
--- a/inc/widgets/class-estore-featured-posts-carousel-widget.php
+++ b/inc/widgets/class-estore-featured-posts-carousel-widget.php
@@ -156,7 +156,7 @@ function widget( $args, $instance ) {
-
+
';
+ $output .= '
';
for ( $i = 1; $i < 6; $i ++ ) {
$j = $i - 1;
$attachment_post_id = attachment_url_to_postid( $image_array[ $j ] );
diff --git a/readme.txt b/readme.txt
index aa6df54..7d5887b 100644
--- a/readme.txt
+++ b/readme.txt
@@ -94,6 +94,14 @@ If you want the theme to be translated into your language, feel free to contribu
/**********************************************************/
== Changelog ==
+= Version 1.4.8 - TBD =
+* Tweak - Remove vertical line appearing on TG:Featured Posts section when comment is closed.
+* Tweak - Add horizontal line between blog posts in mobile view on the TG:Featured Posts section.
+* Tweak - Manage blog post meta data in mobile view on TG:Featured Posts section.
+* Tweak - Remove heart icon from read more button on TG: Category Carousel.
+* Tweak - Align text and decrease font size in mobile and iPad, in portrait and landscape orientation on TG: Horizontal Promo WC category.
+* Tweak - Product list not displaying properly in iPhone 6-8 landscape on TG: Product Grid.
+
= Version 1.4.7 - 2020-04-18 =
* Enhancement - Removed angle down fav icon from login link.
* Fix - Customizer not loading due to header top bar activate callback.
diff --git a/sass/theme/blog/_blog.scss b/sass/theme/blog/_blog.scss
index 676fe1b..986016b 100644
--- a/sass/theme/blog/_blog.scss
+++ b/sass/theme/blog/_blog.scss
@@ -112,6 +112,13 @@
margin-left: 0px;
padding-left: 0px;
}
+ span.comments-link span {
+ color: #787878;
+ border-left: none;
+ margin: 0;
+ font-size: 11px;
+ padding-left: 0;
+ }
}
article {
diff --git a/style.css b/style.css
index 2b510a3..b3cecc6 100644
--- a/style.css
+++ b/style.css
@@ -3393,6 +3393,14 @@ body {
padding-left: 0px;
}
+.entry-meta span.comments-link span {
+ color: #787878;
+ border-left: none;
+ margin: 0;
+ font-size: 11px;
+ padding-left: 0;
+}
+
article {
border-top: 1px solid #e4e4e4;
margin-top: 40px;