• Resolved sg2211

    (@sg2211)


    I have the plugin set to 4 columns displaying the image, title and read more button.

    Due to different title lengths the read more buttons are not in the same position across the columns.

    Is there a way to achieve this, like the ‘continue reading’ buttons in this theme: https://preview.themezee.com/tortuga/ ?

    Great plugin by the way! I am using it with your amazing GP theme.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Tom

    (@edge22)

    You can try something like this:

    .wp-show-posts-columns .wp-show-posts-inner {
        display: flex;
        flex-direction: column;
    }
    
    .wp-show-posts-columns .wp-show-posts-entry-summary, 
    .wp-show-posts-columns .wp-show-posts-entry-content {
        flex-grow: 1;
    }

    You might need to add more browser vendor prefixes depending on what browsers you need to support: https://autoprefixer.github.io/

    Hope this helps ??

    Thread Starter sg2211

    (@sg2211)

    I added the code you provided to .wp-show-posts-entry-header (I am only showing the Image and post title) and it worked.

    Many thanks.

    Plugin Author Tom

    (@edge22)

    You’re welcome ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Read more position’ is closed to new replies.