1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Really dumb simple HTML question

Discussion in 'Programming' started by Dirty-Rockstar, Jan 12, 2007.

  1. #1
    yeah, html tagging. easy stuff eh?
    i hit a brick wall. im new at this stuff. and theres no html fourm help anywhere, that i can see. so im poking here for help. ive tried google. cant come up with an answer. the tags below, you can see what i want to do. problem is, is the "text" gets centered. when i dont want that, i want the text to be up the top like the rest. ive tried tables within tables, but they make a mess. I did it with frames super easy.....super icky. even if there was just 2 tables for the photos and the text seperate. i know you can break tables but that gets confusing. help appriciated

    <table border="1">
            <tr> 
              <td> 
            photo
    <br>
            photo
    <br>
            photo
    
              </td>
                  
                    <td> 
                  Text
                    </td>
                
               
      
              <td> 
               photo
    <br>
            photo
    <br>
            photo
              </td>
             </tr>
           
          </table>
    HTML:
     
    Dirty-Rockstar, Jan 12, 2007 IP
  2. GLD

    GLD Well-Known Member

    Messages:
    307
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    140
    #2
    I'm not sure I understand exactly what you mean, but try replacing <td> with <td align="left">.
     
    GLD, Jan 12, 2007 IP
  3. blackbug

    blackbug Peon

    Messages:
    1,002
    Likes Received:
    89
    Best Answers:
    0
    Trophy Points:
    0
    #3
    You can control the position of the text in that table cell with align and valign attribute. To make the text at the top of that cell then try something like:
    
    <td align="center" valign="top"> 
        Text
    </td>
    
    Code (markup):
     
    blackbug, Jan 12, 2007 IP
  4. Dirty-Rockstar

    Dirty-Rockstar Guest

    Messages:
    252
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #4
    getting there, i think i can mess with it from here. thanks alot :)
     
    Dirty-Rockstar, Jan 12, 2007 IP
  5. Dirty-Rockstar

    Dirty-Rockstar Guest

    Messages:
    252
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #5
    yup, got it. thanks so much. trash this thread. or move it where its supposed to go. wow. a 2 hour problem solved with align. LMFAO

    thanks
     
    Dirty-Rockstar, Jan 12, 2007 IP