
Originally Posted by
Scriptor
Thank you djr33.
I've tried CSS:
<style>
img.resize{height:700px;width:auto;}
</style>
But I have to place class="resize" somewhere in the imagearray, which doesn't work.
Scriptor
Actually you're close. To get the images in the slideshow to scale and fit, either horizontally or vertically, you can do something like the below in CSS:
Code:
<style>
#fadeshow1 img{
width: 250px;
height: auto;
}
</style>
"#fadeshow1" should be the ID of the slideshow DIV, and depending on whether you wish to scale the images to fit horizontally or vertically, set one property to an explicit value, and the other, to auto.
Cheers,
Bookmarks