The certificate background is rendered by CDN. Seems like you're using Jetpack Photon.
So we needed to skip the certificate background image from photon.
I used the following tutorial :
http://jetpack.me/2013/05/03/skip-a-image-with-photon/
and following code to skip the image :
function wplms_certificate_bg_image_photon_exception( $val, $src, $tag ) {
if ( $src == 'http://gameacademy.com.br/wp-content/uploads/2015/10/GA_Certificado3.png' ) {
return true;
}
return $val;
}
add_filter( 'jetpack_photon_skip_image', 'wplms_certificate_bg_image_photon_exception', 10, 3 );