HTML slideshow help

AndyJ1980

Suspended / Banned
Messages
1,651
Name
Have a guess.....
Edit My Images
Yes
I'm currently writing a HTML code for my site, but when I specify a size for the slideshow I'm finding that either landscape/portrait images are being trimmed (ie. width=680, height =452 and visa versa).

Is there a way of specifying landscape images have a width of 680, and portrait images have a height of 680?

Cheers

Andy
 
You would have to post the code you are using but to specify a size of an image:

<img src="/images/myimage.jpg" width="680px" height="425px" alt="My Image" title="My Image"/>
 
What you are asking seems too simple for it to be a problem, do I'm guessing the problem is with something a bit more specific, if you post up your code we might be able to help more.

And lose the px from the image dimension in the above example, they are only needed in css.
 
Back
Top