• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

HTML Help

  • 3,549
    Posts
    20
    Years
    pkmnfanz2001 said:
    Okay, Thank You! Imakuni?
    heres the code:
    Code:
    <table width="800" border="1">
      <tr>
        <td><img src="url_to_your%20image" alt="your_image!!!" width="100%" height="100%"></td>
        <td align="left" valign="top">your_text_here!</td>
      </tr>
    </table>
     
  • 12,504
    Posts
    20
    Years
    • Seen Mar 13, 2022
    Code:
    <img src="IMG URL" alt="" align="left">Text...blahblahblahblah...and so on and so forth.  Pretty simple, and much easier than the two other suggested ways.  The important part is the align left section, basically telling the browser that the picture should be displayed to the left, and anything else can take up the remaining space to the right.  In this case, the text ^0^
     

    Geometric-sama

    The Manly Man of Steel
  • 11,440
    Posts
    20
    Years
    I still like CSS better, it means that you can do the whole thing with CSS...

    Code:
    <img src="whatever.jpg" style="float:left" alt="my pic">text text text :)
     
  • 12,504
    Posts
    20
    Years
    • Seen Mar 13, 2022
    That works too, but just be warned that all browsers don't have full CSS support at this time =/
     

    BlankVoid

    &#40165;&#12434;&#33853;&#12392;&#12377;
  • 42
    Posts
    18
    Years
    using align on <img> tends to be more messier, though when i try these, i always avoid tables and CSS. though I think Imakuni's method is probably the best
     

    Rukario

    Banned
  • 7,597
    Posts
    21
    Years
    float is the CORRECT way to do it.. (it's valid in 4.00 +) though if you not looking for new standards compliance (you should be..) the align is acceptable. both work the same.

    a table in this use is just poor coding and wastes space and bandwidth.
     
  • 12,504
    Posts
    20
    Years
    • Seen Mar 13, 2022
    Jedi_Amara said:
    Most of the current ones do >_> And I haven't come across one that doesn't support the float property in a few years :)

    Good *phew*

    I keep on hearing about how CSS is risky because browsers don't always support it >.<;
     
    Back
    Top