It's the width and height that's the problem. And it's inline in the served code, so either there was a typo, or some template or other server side code isn't working properly and/or not getting accessed on the secure page. Maybe a GD or similar server side script that gets the dimensions or calculates them in some way, might be unavailable on the secure side. Nothing definite anyone can see about that without access to the server though, even then it might be hard to figure out. But here's the evidence, on the working page we see in its source code:
Code:
<p><img src="http://www.princessly.com/me...lle-Flower-Girl-Dress-31.jpg" width="848" height="1272" alt="" title="" /></p>
And non-working:
Code:
<p><img src="https://www.princessly.com/me...lle-Flower-Girl-Dress-31.jpg" width="" height="0" alt="" title="" /></p>
You can use in css for images (img), and then you will see them:
Code:
height: auto;
width: 100%;
But it might mess up the presentation of other images on the site. Best to figure out where the erroneous source code is coming from and fix that.
Bookmarks