Results 1 to 2 of 2

Thread: Image Thumbnail Viewer II

  1. #1
    Join Date
    Apr 2008
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Image Thumbnail Viewer II

    1) Script Title: Image Thumbnail Viewer II

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...thumbnail2.htm

    3) Describe problem: I am new to scripts. I have 20 thumbnails. Can someone help me with code to create two columns of 10 thumbnails each along the left side of my page. I would like pop-up image to be just to the right of these thumbnails and be 600 px wide x 400 px high. Thank you -- John
    Last edited by ddadmin; 04-30-2008 at 07:02 AM.

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Well, since the thumbnails are simply normal HTML on your page, you'd simply tailor them to suit the desired layout. In this case, maybe something like:
    Code:
    <div style="width: 100px; float: left">
    
    <a href="bulb.jpg" rel="enlargeimage::mouseover" rev="loadarea"><img src="thumb1.gif" /></a>
    <a href="bulb.gif" rel="enlargeimage::mouseover" rev="loadarea"><img src="thumb2.gif" /></a>
    "
    
    </div>
    
    <div style="width: 100px; float: left">
    
    <a href="bulb.gif" rel="enlargeimage::mouseover" rev="loadarea"><img src="thumbmore1.gif" /></a>
    <a href="bulb.gif" rel="enlargeimage::mouseover" rev="loadarea"><img src="thumbmore2.gif" /></a>
    "
    
    </div>
    
    <div id="loadarea" style="width: 600px; height: 400px; float: left">
    
    </div>
    
    <br style="clear: left" />

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •