Title: rstuart85's Replies | WordPress.org

---

# rstuart85

  [  ](https://wordpress.org/support/users/rstuart85/)

 *   [Profile](https://wordpress.org/support/users/rstuart85/)
 *   [Topics Started](https://wordpress.org/support/users/rstuart85/topics/)
 *   [Replies Created](https://wordpress.org/support/users/rstuart85/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/rstuart85/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/rstuart85/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/rstuart85/engagements/)
 *   [Favorites](https://wordpress.org/support/users/rstuart85/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Something is re-sizing my Gravatars](https://wordpress.org/support/topic/something-is-re-sizing-my-gravatars-2/)
 *  Thread Starter [rstuart85](https://wordpress.org/support/users/rstuart85/)
 * (@rstuart85)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/something-is-re-sizing-my-gravatars-2/#post-5241633)
 * That fix worked Jeremy, thanks!
 * For anyone else using the Slappy template you also need to update the coment 
   aurthor CSS as well:
 *     ```
       .comment-author img {
       	width: 70px;
       	height: 70px;
       }
       ```
   
 * Cheers
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Something is re-sizing my Gravatars](https://wordpress.org/support/topic/something-is-re-sizing-my-gravatars-2/)
 *  Thread Starter [rstuart85](https://wordpress.org/support/users/rstuart85/)
 * (@rstuart85)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/something-is-re-sizing-my-gravatars-2/#post-5241576)
 * I have managed to figure this out. The offending script was called “devicepx”
   and it is provided as a core part of jetpack. There is no easy way to disable
   it. I had to add the following to my header.php file:
 *     ```
       <?php
       function dequeue_devicepx() {
         wp_dequeue_script( 'devicepx' );
       }
       add_action( 'wp_enqueue_scripts', 'dequeue_devicepx', 20 );
       ?>
       ```
   
 * Not sure if header.php is the right place but it is included on every page so
   it seemed as good as any!

Viewing 2 replies - 1 through 2 (of 2 total)