We're merging with GenerateBlocks! Learn more here.

Support Forum

Please login to receive premium support.

Support for the free plugin can be found here.

Home Forums Pro Support Trying to replicate some post views Reply To: Trying to replicate some post views

#8455
Tom
Keymaster

1. You don’t want it to grow? It shouldn’t by default, the issue is that your image isn’t wide enough to fill the container. Reducing the width of the post container should fix this.

2. This CSS should do it:

.wp-show-posts-entry-title {
    text-align: center;
}

3. Not sure what you mean here? You don’t want it to go down onto two lines?

4. Reduce the padding value inside your list settings.

5. Some CSS:

.wpsp-load-more {
    text-align: center;
}

You can change the text with a filter:

add_filter( 'wpsp_ajax_load_more', function() {
    return 'Load next';
} );