Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Easy Question  (Read 3018 times)

0 Members and 1 Guest are viewing this topic.

Nicann4

  • Guest
Easy Question
« on: October 02, 2007, 03:21:49 PM »
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! ???

The Saviour

  • Guest
Re: Easy Question
« Reply #1 on: October 02, 2007, 03:59:45 PM »
Create a table for your image...one column...two rows...image in the first row and text in the second.

michaewlewis



    Intermediate
  • Thanked: 26
    • Yes
    • Yes
  • Experience: Expert
  • OS: Unknown
Re: Easy Question
« Reply #2 on: October 02, 2007, 04:24:30 PM »
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 <tr> ... </tr> section to add another field.