-
AuthorPosts
-
January 21, 2016 at 11:04 pm #569622
Hey Enfold-Team,
I would like to know if it’s possible to move the meta information of a blogpost below its content. Currently it’s right below the title and I would like to move it in between the text and the share buttons. All the solutions I found on this board didn’t work for me.
Kind regards
KrestienJanuary 22, 2016 at 2:22 am #569681Hey krestien!
In the /enfold/includes/loop-index.php file on lines 211 – 245 you’ll see this.
echo "<span class='post-meta-infos'>"; $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false)); echo "<time class='date-container minor-meta updated' $markup>".get_the_time(get_option('date_format'))."</time>"; echo "<span class='text-sep text-sep-date'>/</span>"; if ( get_comments_number() != "0" || comments_open() ){ echo "<span class='comment-container minor-meta'>"; comments_popup_link( "0 ".__('Comments','avia_framework'), "1 ".__('Comment' ,'avia_framework'), "% ".__('Comments','avia_framework'),'comments-link', "".__('Comments Disabled','avia_framework')); echo "</span>"; echo "<span class='text-sep text-sep-comment'>/</span>"; } if(!empty($cats)) { echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." "; echo $cats; echo '</span><span class="text-sep text-sep-cat">/</span>'; } echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." "; echo '<span class="entry-author-link" '.avia_markup_helper(array('context' => 'author_name','echo'=>false)).'>'; echo '<span class="vcard author"><span class="fn">'; the_author_posts_link(); echo '</span></span>'; echo '</span>'; echo '</span>'; echo '</span>';
That’s the post meta information your referring to. You could try moving it above line 280.
echo '</footer>';
Cheers!
ElliottJanuary 22, 2016 at 6:27 pm #570265Thank you for your help, it has moved down below the content. Unfortunately, as you can see on this picture, the meta is now lying above the share buttons. Could you please help me solving this problem? I want the social buttons under the meta info.
Thanks!January 25, 2016 at 5:58 am #571092Hi,
Please try the following in Quick CSS under Enfold–>General Styling:
.post-meta-infos { top: -26px !important; }
Best regards,
RikardJanuary 25, 2016 at 6:22 pm #571513Hi Rikard!
I changed it to -65px, now it fits perfectly.
Thanks for your help!January 25, 2016 at 6:23 pm #571514Hi!
Glad you got it short out!
Please do let us know if we can do anything else for you, we will be happy to helpCheers!
Basilis -
AuthorPosts
- You must be logged in to reply to this topic.