Lining up links to the left

Discussion in 'HTML & Website Design' started by chrisj, Sep 11, 2007.

  1. #1
    I've got four links in a left side column, on my web page, but I can't seem to get them to line of flush left in the column. They seem to be centered.
    I tried adding <td align="left">, without success. Your help will be appreciated.


    <img src="images/bullet.gif" alt="" width="10" height="10"><a href="index.php"><font color="#DDCEA2"><font face="Arial" size="2">Home</a></font><br>
    
    <img src="images/bullet.gif" alt="" width="10" height="10"><A href='index.php?command=signup_page'><font color="DDCEA2"><font face="Arial" size="2">Sign Up</font></A><br />
    
    <img src="images/bullet.gif" alt="" width="10" height="10"><a href="faq.html"><font color="DDCEA2"><font face="Arial" size="2">FAQ</a><br>
    
    <img src="images/bullet.gif" alt="" width="10" height="10"><a href="legal.html"><font color="DDCEA2"><font face="Arial" size="2">Terms of Use</a>
    Code (markup):

     
    chrisj, Sep 11, 2007 IP
  2. powerlifer

    powerlifer Active Member

    Messages:
    2,002
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    78
    #2
    try adding <td style="float:left;"></td>
     
    powerlifer, Sep 11, 2007 IP
  3. itssangy

    itssangy Peon

    Messages:
    135
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #3
    You should try using list

    
    <ul>
    <li>link</li>
    </ul>
    
    Code (markup):
    and use css to have the li use the bullet as image.
     
    itssangy, Sep 11, 2007 IP
  4. powerlifer

    powerlifer Active Member

    Messages:
    2,002
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    78
    #4
    yeah semantically speaking you should use a list for the links and probably not tables for layout but depends what your using
     
    powerlifer, Sep 11, 2007 IP