Sizing images correctly for mobile devices in WordPress
Sizing images correctly for mobile devices in WordPress just needs the following in the image properties. For example, add the following:
max-width: 100%; height: auto;
to images such as these:

Ensuring you also have the following set to size the page appropriately for mobile devices:
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
in your header files or main PHP files.
Cheers,
HTH

