I have a page that has two divs one containing the text description of an Item 
and the other, pictures relating to the item.
My design is such that I want to show the pictures in groups of four within the 
picture holding div, and so if there are
more that four (4) pictures for the item, the user must page through, within 
the div to see the rest of the pictures. Note,
the content in the other div does not change when the picture part does.
 
What is the best way to implement such a functionality. Here is the picture and 
text code for my current static div:

<table width="600" border="1" cellpadding="1">
  <tr>
    <td width="50%"><img src="images/consumer/#ExpandedImg1#.jpg"> </td>
    <td width="50%"><img src="images/consumer/#ExpandedImg2#.jpg"> </td>
  </tr>
  <tr>
    <td width="50%">#DescriptionforExpandedImg1# </td>
    <td width="50%">#DescriptionforExpandedImg2# </td>
  </tr>
  <tr>
    <td width="50%"><img src="images/consumer/#ExpandedImg3#.jpg"> </td>
    <td width="50%"><img src="images/consumer/#ExpandedImg4#.jpg"> </td>
  </tr>
  <tr>
    <td width="50%">#DescriptionforExpandedImg3# </td>
    <td width="50%">#DescriptionforExpandedImg4# </td>
  </tr>
  <tr>
    <td width="50%"><img src="images/consumer/#ExpandedImg5#.jpg"> </td>
    <td width="50%"><img src="images/consumer/#ExpandedImg6#.jpg"> </td>
  </tr>
  <tr>
    <td width="50%">#DescriptionforExpandedImg5# </td> 
    <td width="50%">#DescriptionforExpandedImg6# </td>
  </tr>
  <tr>
    <td width="50%"><img src="images/consumer/#ExpandedImg7#.jpg"> </td>
    <td width="50%"><img src="images/consumer/#ExpandedImg8#.jpg"> </td>
  </tr>
  <tr>
    <td width="50%">#DescriptionforExpandedImg7# </td>
    <td width="50%">#DescriptionforExpandedImg8# </td>
  </tr>
  <!--- temporary output of consumer's details--->
     <tr>
    <td width="50%"><font size="+2"><a 
href="adConsumerEmail.cfm?User_id=#URLEncodedFormat(TRIM(User_id))#"> #user_id# 
 </a></font></td>
    <td width="50%">#phone# </td>
  </tr>
  <tr>
    <td width="50%">#city# </td>
    <td width="50%">#region# </td>
  </tr>

I will appreciate insights on how to do this. TIA



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:326424
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to