[Resolved] Archive columns settings

Home Forums Support [Resolved] Archive columns settings

Home Forums Support Archive columns settings

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #865769
    Jim

    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

    #865937
    David
    Staff
    Customer Support

    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

    #866009
    Jim

    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

    #866016
    David
    Staff
    Customer Support

    Glad to hear you got that resolved.

    #866039
    Jim

    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?

    #866049
    David
    Staff
    Customer Support

    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;
    }
    #866294
    Jim

    Thanks David! Very nice ๐Ÿ™‚

    #866324
    David
    Staff
    Customer Support

    Glad to be of help.

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.