Please help me vertically align image

Discussion in 'CSS' started by tom11011, Dec 30, 2010.

  1. #1
    Hello,

    My airline game website (shown in my signature) has an issue where I do not know how to align my facebook like button with the link text next to it. Can anyone help? Here is what the code looks like now-

    <tr>
    <td align=right><a href="directions.html">Directions</a> | <a href="play.php">Play</a><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like show_faces="false" width="250"></fb:like></td>
    </tr>

    Thank you.
     
    tom11011, Dec 30, 2010 IP
  2. J32

    J32 Peon

    Messages:
    94
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    two options

    1. <td align=right valign="middle">
    2. <td align=right style="vertical-align:middle;">
     
    J32, Dec 30, 2010 IP
  3. jeremyhowell

    jeremyhowell Member

    Messages:
    379
    Likes Received:
    7
    Best Answers:
    2
    Trophy Points:
    45
    #3
    jeremyhowell, Dec 30, 2010 IP
  4. tom11011

    tom11011 Well-Known Member

    Messages:
    1,117
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    165
    #4
    Thanks for the suggestions. I tried both but it didn't work. jermemy, I'm afraid that article is a little beyond my expertise, if you could offer some specifics?
     
    tom11011, Dec 30, 2010 IP
  5. jeremyhowell

    jeremyhowell Member

    Messages:
    379
    Likes Received:
    7
    Best Answers:
    2
    Trophy Points:
    45
    #5
    Try this (notice I am using a div instead of a table cell for layout. this is the modern web standard, tables are so 90s).

    
    <div style="width:360px;">
    <span style="float:left;"><a href="directions.html">Directions</a> | <a href="play.php">Play</a></span><span style="float:right"><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like show_faces="false" width="250"></fb:like></span>
    </div>
    
    Code (markup):
     
    jeremyhowell, Dec 30, 2010 IP
  6. J32

    J32 Peon

    Messages:
    94
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Good to know...thanks for the info
     
    J32, Dec 30, 2010 IP