Show Blog title with information

Hi,
I am wondering why my page for a blog entry is looking different than in some tutorials. Example:

Example from a tutorial:

I also would like to have these information like author and publish date. Is it due to the header I designed?

Best,
Lisa

Hi Ole,

By default, Pro post meta is disabled. You can enable the post meta in X/Pro > Theme Options > Blog, you can also check the document file here for the full details about the blog.

I hope it will help you solve your issue.

Thank you.

Hi,

that was easy, thank you :slight_smile:

I’ve got one more question regarding the blogs: So on my blog page everything looks great. But when opening a single blog entry page, it first of all displays the image in a very huge way. And I cannot change it with PRO. Is there a chance to get the image smaller or even deactivate it and design the whole page with PRO?

Hi @olefischer89,

I will give you two ways on how to solve your issues.

1.) First, on the blog single page with the help of CSS, we can make the featured image smaller, just use the code below.

Add the code below on Pro > Theme Options > CSS

.single .has-post-thumbnail .entry-featured {
width: 50%;
}

To center the image use this code:

.single .has-post-thumbnail .entry-featured {
width: 50%;
margin: 0 auto !important;
}

2.) Second, we can remove the featured image on the single blog page, and use the PRO builder, to do that follow the instructions below.

Add the code below on Pro > Theme Options > CSS

.single .has-post-thumbnail .entry-featured{
 display: none;
 }

then go to Pro > Settings and enable the Posts type

That’s it, Pro builder is now enabled in your posts pages.

Please note that providing custom code is outside the scope of our theme support. Issues that will arise from the use of custom codes should be forwarded to a 3rd party developer.

Thank you.

Awesome help, thanks a lot!!

@olefischer89,

You’re welcome.

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