Forum Moderators: not2easy

Message Too Old, No Replies

Inserting thumbnails using css...

         

Bowdii

8:24 pm on May 5, 2005 (gmt 0)

10+ Year Member



I have started my first full css site and so far it is going pretty good.

Now, I want to insert 3 rows, 5 pictures in a row of thumbnails...

I have no idea where to start with this..

Thanks for this site, and everyones help!

D_Blackwell

9:43 pm on May 5, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



One option is a <dl>. Here is an excellent resource: [maxdesign.com.au...]

Note: It could be argued that this in an inappropriate use of <dl> for what you want, but the <dl> is a pretty potent tool with numerous under utilized benefits.

Bowdii

2:51 am on May 6, 2005 (gmt 0)

10+ Year Member



okay, that is fantastic!

Now here is my new problem. So I am trying to set up, so when you click the image, it expands to a bigger one. But it is just putting a shadow behind the image with the code i have...

<code>

<dl class="gallery">
<dt><a ref="images/image1-big.jpg"><img src="images/image1.jpg" alt=""></a></dt>
<dt>Image 1</dt>
<dd>Description here</dd>
</dl>

</code>

I added " <a ref="images/image1-big.jpg"> </a>" thinking that when you clicked the image, it would go to the bigger one.. but this does not work.

Can someone explain how i can accomplish this?

Thanks again for your help!

D_Blackwell

12:40 am on May 7, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



<a href="images/image1-big.jpg">

Is this just a typ0?