Results 1 to 2 of 2

Thread: Problem with page layout and links

  1. #1
    Join Date
    May 2005
    Posts
    10

    Problem with page layout and links

    Hi,

    Im a PHP coder who has to work with a layout made out of tables. There is an image in the layout, a button, that I need to make a link out of it. Without the <a href=....></a> it looks fine:
    Code:
       
    <td>
       
       <img name="button_quick****" src="images/button_quick****.gif" width="37" height="37" border="0" alt="">
       
       </td>
    But with it, it looks bad:
    Code:
       <td>
       <a href="index.php?videoid=random" border=0>
       <img name="button_quick****" src="images/button_quick****.gif" width="37" height="37" border="0" alt="">
       </a>
       </td>
    Image included:
    Image

    How can I fix this?

  2. #2
    Join Date
    May 2005
    Posts
    10
    In the forum it sais there is 1 reply, but when I open the thread there is none, very strange

Posting Permissions

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