 |

chassa2556
User
Jul 2, 2008, 3:46 PM
Post #1 of 2
(393 views)
Shortcut
|
|
Larger image in the Detail Page
|
Can't Post
|
|
Could you tell me how do I make an image larger in the detail page to the image in the listing page. Sorry to be dim but I'm trying to make a rudimentary framework here. So I want to click from the listings viewer where there is a smaller image to the details page where I would like a bigger scale of the same image.
|
|
|  |
 |

Dave
Staff
/ Moderator

Jul 2, 2008, 9:34 PM
Post #2 of 2
(388 views)
Shortcut
|
|
Re: [chassa2556] Larger image in the Detail Page
[In reply to]
|
Can't Post
|
|
Hi Charles, If you know you're only going to have images in your upload field then instead of using this: <img src="<?php echo $upload['thumbUrlPath'] ?>" width="<?php echo $upload['thumbWidth'] ?>" height="<?php echo $upload['thumbHeight'] ?>" alt="" /><br/> Just use this: <img src="<?php echo $upload['urlPath'] ?>" width="<?php echo $upload['width'] ?>" height="<?php echo $upload['height'] ?>" alt="" /><br/> The code generator automatically creates those tags for you. One displays the large image and one display the thumbnail. Hope that helps! Dave Edis - Senior Developer interactivetools.com
|
|
|  |
|