To use your custom loading icon for pagination, Pinterest layout… please add this code to file functions.php of your active theme:
// Content Views Pro - Change loading icon
add_filter( 'pt_cv_loading_image_url', 'cvp_theme_loading_image_url', 100, 1 );
function cvp_theme_loading_image_url( $args ) {
$args = 'URL_OF_YOUR_IMAGE';
return $args;
}
To change the size of loading icon, Please add this code to Custom CSS field in Content Views >> Settings page:
.pt-cv-spinner {
width: 30px !important;
height: 30px !important;
}
Best regards,