Results 1 to 3 of 3

Thread: Code help

  1. #1
    Join Date
    Oct 2006
    Location
    BUXTON
    Posts
    2,191
    Tokens
    0

    Latest Awards:

    Default Code help

    Hey i got this code i tryed loads ot make it Align top but note works...

    HTML Code:
                      <td>
                      <table border="0" align="top" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100">
                        <tr>
                          <td width="18">
       <img src="images/index_18.gif" width="18" height="10" alt=""></td>
                          <td width="58">
       <img src="images/index_19.gif" width="512" height="10" alt=""></td>
                          <td width="24">
       <img src="images/index_20.gif" width="10" height="10" alt=""></td>
                        </tr>
                        <tr>
                          <td background="images/index_26.gif" width="18">&nbsp;</td>
                          <td width="58" bgcolor="#FFFFFF">&nbsp;</td>
                          <td width="24" background="images/index_28.gif">&nbsp;</td>
                        </tr>
                        <tr>
                          <td width="18">
       <img src="images/index_32.gif" width="18" height="10" alt=""></td>
                          <td width="58">
       <img src="images/index_33.gif" width="512" height="10" alt=""></td>
                          <td width="24">
       <img src="images/index_34.gif" width="10" height="10" alt=""></td>
                        </tr>
                      </table>
                      </td>
    +rep and help

  2. #2
    Join Date
    Jul 2006
    Location
    Athens
    Posts
    842
    Tokens
    0

    Default

    You seem to have used
    Code:
    align="top"
    align refers to horizontal align

    You want
    Code:
    valign="top"
    Which is vertical align


  3. #3
    Join Date
    Oct 2006
    Location
    BUXTON
    Posts
    2,191
    Tokens
    0

    Latest Awards:

    Default

    HTML Code:
                      <td>
                      <table border="0" valign="top" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100">
                        <tr>
                          <td width="18">
       <img src="images/index_18.gif" width="18" height="10" alt=""></td>
                          <td width="58">
       <img src="images/index_19.gif" width="512" height="10" alt=""></td>
                          <td width="24">
       <img src="images/index_20.gif" width="10" height="10" alt=""></td>
                        </tr>
                        <tr>
                          <td background="images/index_26.gif" width="18">&nbsp;</td>
                          <td width="58" bgcolor="#FFFFFF">&nbsp;<p>&nbsp;</td>
                          <td width="24" background="images/index_28.gif">&nbsp;</td>
                        </tr>
                        <tr>
                          <td width="18">
       <img src="images/index_32.gif" width="18" height="10" alt=""></td>
                          <td width="58">
       <img src="images/index_33.gif" width="512" height="10" alt=""></td>
                          <td width="24">
       <img src="images/index_34.gif" width="10" height="10" alt=""></td>
                        </tr>
                      </table>
                      </td>

    Still dont work :S

Posting Permissions

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