Home › Forums › MapPress Support › Show category mashup › Reply To: Show category mashup
January 15, 2015 at 4:03 am
#15540
Keymaster
Hi,
If you use the HTML generated by WordPress for an image, it will be incorrect. WordPress uses height and width for the image tag but doesn’t include ‘px’, which is invalid in some browsers. Add the ‘px’ suffix to make it work.
For example, change
<img height="300" width="225" src="myimage">
To:
<img height="300px" width="225px" src="myimage">