1.

Solve : Easy Question?

Answer»

This is probably something very very easy to do, but I'm new to HTML and I can't figure it out. My web PAGE has numerous pictures and I want the name of the item UNDER the picture. The best I've been able to get is the text to APPEAR to the right of the picture...please help! CREATE a table for your image...one column...two rows...image in the FIRST row and text in the second.one of these should work for you.
Code: [Select]<table>
  <tr>
    <td><IMG src=image.jpg></td> <td>Image Text</td>
  </tr>
  <tr>
    <td><img src=image.jpg></td> <td>Image Text</td>
  </tr>
</table>

OR

Code: [Select]<table>
  <tr>
    <td><img src=image.jpg></td> <td><img src=image2.jpg></td>
  </tr>
  <tr>
    <td>Image 1 Text</td> <td>Image 2 Text</td>
  </tr>
</table>

Just copy the ... section to add another field.



Discussion

No Comment Found