Move meta data at the end of posts + add comment link

Thank you for this elegant theme! I’m not a wp developer but I have done a lots of own css customizations and also added a child theme. But now I’m stuck! I changed the blog post reading from the_excerpt to the_content in the content.php to get full posts.

Is there a way to use custom css to move the meta data (author, date, category) at the end of the blogpost, remove the icons, make it centered and also add leave a comment link + count there?
Like this: December 18, 2016 │ Fashion │Comments (0)

My website adress is http://saranguyen.fi
Attached a screenshot of the post title.

Thanks!

There’s also a thin grey line on category archive pages that I would like to remove.

Hi @sarang,

In order to move the meta data (author, date, category) at the end of the blogpost, you will need some php skills because this fall out from the free support and more into custom development, by you or by a developer.

If you want to remove the icons use this css code:

.post-meta i {
display:none;
}

For that grey line, use this css code:

.widget .widget-title{
border-bottom:none;
}

Thanks,

Cristian

Thanks for your answer. But if I don’t move the meta data to the end, and just want to add a comment link to the meta data. Can I use custom css code for that? Or does it also need to be done in .php?

I would like the grey line disappear only on category blog posts. The css code you mentioned changes every grey line in the other widgets except the ones in the blog posts…

Hi @sarang,

Yes, it will need to be done in Php.

Try to use this css for blog posts:

#header-image img {
border-bottom:0px;
}

Thanks,

Cristian