Tagged: x
-
AuthorPosts
-
September 22, 2016 at 10:13 pm #1187424
kowalsmeParticipantHow can I remove the duplicate post title on any post designated as an index featured post in Ethos?
It is showing the title overlayed on the featured image, which I like, and also above the image like the other posts. I only want to show the image with title overlay for these featured posts
example: http://andthenitried.com/
September 23, 2016 at 12:12 am #1187502
Rue NelModeratorHello There,
Thanks for writing in! To resolve your issue, please add the following JS code in the customizer, Appearance > Customize > Custom > Javascript
(function($){ $('.hentry').each(function(){ var element = $(this); var featured = element.find('.entry-thumb.featured'); if ( featured.length > 0 ){ element.addClass('featured-post'); } }); })(jQuery);And then you also need to add the following css code in the customizer, Appearance > Customize > Custom > CSS
.featured-post .entry-header { display: none; }We would loved to know if this has work for you. Thank you.
October 3, 2016 at 6:26 pm #1201187
kowalsmeParticipantThis worked. Thanks for your help!
October 3, 2016 at 10:54 pm #1201450
Prasant RaiModeratorYou are most welcome. 🙂
-
AuthorPosts
- <script> jQuery(function($){ $("#no-reply-1187424 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>
