Changing layout of blog post?

If you take a look at this page: https://flames2.vanloononline.nl/intro-nieuws/ then there are the categories in the top of each blog.

How can I change this so that I only have the date and the categories over and that the author does NOT show?

P.S. I know it has to be done in the child theme /framework/views/renew/_content-post-header.php

Hi @madref,

Thank you for reaching out to us. This can be achieved easily with custom CSS only, try adding the following code in the Theme Options > CSS:

.entry-header .p-meta>span:first-child {
    display: none;
}

Here are some related links for further reading, this could help you in finding and implementing some CSS fixes:

Don’t forget to clear all caches including your browser’s cache after adding the code. Let us know how this goes!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.