Tagged: x
-
AuthorPosts
-
February 3, 2017 at 10:08 am #1356869
KobberParticipantHi,
Can I have the headline and meta data below the featured image instead of above?
– And can that be the same on my blog index page?
– And can I have the date as the only thing in my meta data (no author and category)?
February 3, 2017 at 4:18 pm #1357308
Nabeel AModeratorHi Kobber,
Thanks for writing in!
For 1 & 2, add the following jQuery script in your Customizer via Appearance > Customize > Custom > Edit Global Javascript
(function($) { $('.blog article').each(function(){ if($(this).find('.entry-featured').length) { $(this).find('header').insertAfter('.entry-featured'); } }); $('.single-post article').find('header').insertAfter('.entry-featured'); })(jQuery);For 3, add the following code in your Customizer via Appearance > Customize > Custom > Edit Global CSS:
.entry-header .p-meta span:nth-child(1), .entry-header .p-meta span:nth-child(3) { display: none !important; } .entry-header .p-meta span:nth-child(2):after { content: "" !important; }Don’t forget to clear your browser’s cache after adding the code. Let us know how this goes!
-
AuthorPosts
- <script> jQuery(function($){ $("#no-reply-1356869 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>
