No way to photos side by side?

  • Unknown's avatar

    @guerro:

    – Yes, the codes we suggest are for copying and pasting.

    – What are those pppps above the pictures? If they are your way of placing them lower, then here codes for blank lines:
    <p align="none"> </p>
    or
    <p align="none">&nbsp;</p>
    – The code for blank spaces is this (you can use it repeatedly, with a space inbetween):
    &nbsp;
    – But adding that between the names of the two actresses is not the proper way to do what I guess you want, since the text is independent of the pictures. In order to center the names below each picture, you must set the whole as a table. In your case the code would be this:

    <table>
    <tr>
    <td align="center">CodeForPic1</td>
    <td align="center">CodeForPic2</td>
    </tr>
    <tr>
    <td align="center">Name1</td>
    <td align="center">Name2</td>
    </tr>
    </table>

    – But this is an unnecessarily complicated way of doing it (and I don’t know if the table can then be centered): the easy way is to incorporate the names in the pictures themselves. I can do that and mail it to you, if you wish – it’s a few minutes’ work.

  • The topic ‘No way to photos side by side?’ is closed to new replies.