[Resolved] Read More buttons in line

Home Forums Support [Resolved] Read More buttons in line

Home Forums Support Read More buttons in line

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #531698
    Manuel

    Hello again,

    any chance to get all read more buttons in line in blog layout with three columns?

    Thanks in advance.

    #531914
    Tom
    Lead Developer
    Lead Developer

    You could do this:

    .generate-columns .inside-article {
        display: flex;
        flex-flow: column;
    }
    
    .entry-summary {
        display: flex;
        flex-flow: column;
        flex: 1;
    }
    
    .read-more-container {
        margin-top: auto;
    }

    Depending on which browsers you need to support, you may want to pop that CSS into the prefixer here: https://autoprefixer.github.io/

    #532341
    Manuel

    Wow, great!
    Thanks a lot for your fast response.

    #532640
    Tom
    Lead Developer
    Lead Developer

    No problem! 🙂

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