I'm displaying a slide show of images which rotate. It works except for the following problem.
Some images are in landscape format others are in portrait format. The landscape ones display as they should, however, the portrait ones get squeezed into the horizontal format.
To solve this I removed the height and width values in the following img tag so that I would just use the image values themselves.
to give
This worked when tested on my computer but was changed back to the original when I tried to put it into production on the website. I'm using MS FrontPage.
Is there something I can do to get around this?
Thanks for any help.
Some images are in landscape format others are in portrait format. The landscape ones display as they should, however, the portrait ones get squeezed into the horizontal format.
To solve this I removed the height and width values in the following img tag so that I would just use the image values themselves.
Code:
<img border="2" src="" name="showPhotoRotate" align="center" width="288" height="216">
to give
Code:
<img border="2" src="" name="showPhotoRotate" align="center">
This worked when tested on my computer but was changed back to the original when I tried to put it into production on the website. I'm using MS FrontPage.
Is there something I can do to get around this?
Thanks for any help.