[Resolved] Remove entry-summary and three periods?

Home Forums Support [Resolved] Remove entry-summary and three periods?

Home Forums Support Remove entry-summary and three periods?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1531349
    Andy

    Hi there,

    1. I’d like to keep the ‘read more’ button. But, I’d like to remove the entry summary and ‘three periods.’Overall, I’d love to just see the ‘read more’ button under each post title. (please note: post excerpt is already set to 0 characters)

    2. Is it possible to have the ‘read more’ button line up with the other posts’ ‘read more’ buttons as well? Or is that difficult? I noticed, that if the titles are larger in length, the buttons are pushed down. Not a big deal, just curious.

    Desired result:
    https://imgur.com/a/TRKPpEa

    #1531395
    Leo
    Staff
    Customer Support

    Hi there,

    Try this CSS for both requests:

    .generate-columns .inside-article {
        display: flex;
        flex-direction: column;
    }
    .generate-columns .inside-article .entry-summary {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    .entry-summary p:not(.read-more-container) {
        display: none;
    }
    .read-more-container {
        margin-top: auto;
    }

    Adding CSS: https://docs.generatepress.com/article/adding-css/

    Let me know if this helps ๐Ÿ™‚

    #1531399
    Andy

    PERFECT!!!! Thanks Leo!!!

    #1531407
    Leo
    Staff
    Customer Support

    No problem ๐Ÿ™‚

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