Home › Forums › Pro Support › Load More translate and styling › Reply To: Load More translate and styling
May 28, 2019 at 4:22 pm
#9569
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';
} );