Every now and then, someone sends a huge image to my Gmail account. This leads to frustration, because I’m then unable to see my reply, which goes off the right side of the screen. The fix for this is relatively-simple and only 2 steps:
Step 1: Install Stylebot in Chrome or Firefox.
Step 2: Add the following to the Stylebot code on your Gmail page:
.nh img,
.nH img {
max-width: 90%;
height: auto;
}
That’s it! Here’s an example result:

Here’s what your Stylebot code should look like:

Enjoy!
More posts from themightymo.com
Avada ThemeFusion loads 80+ javascript files on every page! DON’T RECOMMEND!
I inherited a WordPress site using Avada ThemeFusion, and it is experiencing really bad performance issues. After doing lots of my standard bag-of-tricks optimizations to little effect, I decided to simply count the javascript files. To my surprise horror, I found it was loading over 80 javascript files on every single page! (For comparison: themightymo.com…
Why I switched from WPMUDEV’s Defender Pro to WordFence for WordPress Security
A while back, I started using WPMUDEV’s Defender Pro plugin for security on all my WordPress sites. I made a decision this week to switch to WordFence. The conversation was forced on me, because I had a site using Defender Pro that was hacked. I do not blame Defender Pro for the hack, however, this…
How to Preload Font in WordPress Functional Plugin
use a plugin to do a bunch of optimizations on this site, but for some reason, the preloading of fonts is broken. So I rolled my own font preloading function and placed it in my functional plugin (You could also put it in functions.php). Here’s the code.