Site logo

Archived topic

Read More buttons in line

3 replies · Started by Manuel on March 26, 2018

Viewing posts 1–4 of 4

Hello again,

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

Thanks in advance.

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/

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

No problem! :)

This archived topic is closed to new replies.