Image Thumbnails
3 posts by 2 authors in: Forums > CMS Builder
Last Post: November 6, 2008 (RSS)
By wevolutions - November 6, 2008 - edited: November 7, 2008
How do I know if my images have a thumbnail when uploaded?
Also how do I limit the List Page to only one image, because all the images are showing one below the other.
Also I need help in getting the Page Links as they are displayed on my page.
Also how do I limit the List Page to only one image, because all the images are showing one below the other.
Also I need help in getting the Page Links as they are displayed on my page.
Re: [WEVOLUTIONS] Image Thumbnails
By Dave - November 6, 2008
Hi Wevolutions,
Can you post an url to this page as well?
>How do I know if my images have a thumbnail when uploaded?
A thumbnail should automatically be created. CMS Builder is setup to do this by default.
>Also how do I limit the List Page to only one image,
>because all the images are showing one below the >other.
Add this at the bottom of the uploads "foreach" loop to "break" out of the loop after just one pass:
<?php break; ?>
<?php endforeach ?>
>Also I need help in getting the Page Links as they
>are displayed on my page.
Try this:
<?php echo $record['_link'] ?>
Hope that helps!
Can you post an url to this page as well?
>How do I know if my images have a thumbnail when uploaded?
A thumbnail should automatically be created. CMS Builder is setup to do this by default.
>Also how do I limit the List Page to only one image,
>because all the images are showing one below the >other.
Add this at the bottom of the uploads "foreach" loop to "break" out of the loop after just one pass:
<?php break; ?>
<?php endforeach ?>
>Also I need help in getting the Page Links as they
>are displayed on my page.
Try this:
<?php echo $record['_link'] ?>
Hope that helps!
Dave Edis - Senior Developer
interactivetools.com
interactivetools.com
Re: [Dave] Image Thumbnails
Thank you Dave. It worked like a charm.