Results 1 to 2 of 2

Thread: Buttons on the same line?

  1. #1

    Thread Starter
    Member
    Join Date
    Jan 2002
    Posts
    59

    Buttons on the same line?

    I want to thank all that reply:

    How would I make both of these buttons be on the same line? They are in a Table, and one should be aligned (Right) and should be Aligned (Left).

    <div align="Right"><a href="C:/../inetpub/wwwroot/images/<% =Pict%>" target="Frame2"><img src="C:/../inetpub/wwwroot/images/view.jpg" width="81" height="20" border="0"></div>

    <div align="Left"><img src="C:/../inetpub/wwwroot/images/tobuy.jpg" width="81" height="20" border="0"></div>
    David M. Camp

  2. #2
    <?="Moderator"?> john tindell's Avatar
    Join Date
    Jan 2002
    Location
    Brighton, UK
    Posts
    1,099
    just put them into a table with two columns?

    Code:
    <table>
    <tr>
    <td align=left>
    <a href="C:/../inetpub/wwwroot/images/<% =Pict%>" target="Frame2"><img src="C:/../inetpub/wwwroot/images/view.jpg" width="81" height="20" border="0">
    </td>
    <td align=right>
    <img src="C:/../inetpub/wwwroot/images/tobuy.jpg" width="81" height="20" border="0">
    </td>
    </tr>
    </table>
    ??????????????????????

Posting Permissions

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



Click Here to Expand Forum to Full Width