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 Load More translate and styling Reply To: Load More translate and styling

#9569
Tom
Keymaster

Do this instead:

a.wp-show-posts-read-more:hover,
a.wp-show-posts-read-more:focus {
    border: 1px solid #222;
    background-color: #b72e09;
    color: #fff;
}

As for the loading text, do this:

add_filter( 'wpsp_ajax_loading', function() {
    return 'Your text here';
} );