Archived topic
Archive columns settings
7 replies · Started by Jim on April 11, 2019
Hi there, hope you can help.
I display post archive pages in columns but would like some customisation to the elements.
- hide the breadcrumbs (I could do that with css)
- Display the image above the title
Is there a way to customise this?
I probably can find the source code for this in the blog files but that would be over written with an update.
Please explain how I can adjust those columns for my needs.
Thnx!
Jim
Hi there,
how are you adding the breadcrumbs?
For the image position, make sure you have the Blog module activated in Appearance > GeneratePress, you can position it in Customizer > Layout > Blog --> Featured Images > Archives
Hi David,
ah, found the setting. Didn't know it was in there.
And the breadcrumbs were added with a hook. I took them out for archive pages.
Thanks, all working now.
Jim
Glad to hear you got that resolved.
There is one more thing... :|
I would like the category name (Only the main category if there are multiple) to be displayed between the featured image and the title.
That is not configurable in the settings.
Is there an other way to manipulate the order?
Without messing around with the templates you could try this CSS:
.archive .generate-columns .inside-article {
display: flex;
flex-direction: column;
}
.archive .post-image {
order: -2;
}
.archive footer.entry-meta {
margin-top: 0;
order: -1;
}
Thanks David! Very nice :)
Glad to be of help.