Updating post section with publication date and same sizes

Hi team,

I was just wondering if themeco was able to adjust this page https://www.loftuspeak.com.au/category/press/ or would I need to go into the files and update a php file?

I’m trying to add publication date to each post snippet on the page and to make each box for each article the same size.

Hi James,

You can simply enable the Post Meta option in X > Theme Options > Blog > Content > Post Meta.

This will display the post meta which includes the author, categories, publish date, and etc.

If you only want the publish date visible, please add this in X > Theme Options > CSS:

.p-meta span, 
.p-meta span:nth-child(2):after {
    display: none;
}

.p-meta span:nth-child(2) {
    display: block;
}

Your blog and category pages are set to dislay in Masonry view and that is the default way of how the post items are displayed in Masonry format. If you use the Standard format, you can only have one column per row.

Making the masonry view displayed in the same height will require some customization which goes beyond the scope of our support. You might want to consult with a developer for this to get done.

Hope this helps.

Thank you so much for this! It really helps me understand where to look for stuff.

Regarding Masonry, I’m assuming if I change to standard it uses the default php file for posts? And all I need to do is to ask my web developer to update that with his own code right?

The CSS for post meta worked perfectly :slight_smile:

Hey James,

That is correct. You just have to change the style to standard then to make the posts display in three columns and setting them in the same size should be doable by some custom CSS which your developer should be able to do.

You’re most welcome! :slight_smile:

1 Like

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