Question:

How do I put text next to a photo on myspace?

by  |  earlier

0 LIKES UnLike

How do I put text next to a photo on myspace?

Like this profile.

http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=114880462

On her about me there is a photo then text next to it.

I tried it but the text was underneath the photo.

How do I get it like that?

this code didn't work

<div><img src="imageurl" align"left"><p>YOUR TEXT HERE</p></div>

 Tags:

   Report

2 ANSWERS


  1. http://blog.myspace.com/index.cfm?fuseac...


  2. You could use a table with no borders:

    &lt;table style=&quot;text-align: left; width: 100%;&quot; border=&quot;0&quot;

    cellpadding=&quot;1&quot; cellspacing=&quot;2&quot;&gt;

      &lt;tbody&gt;

        &lt;tr&gt;

          &lt;td&gt;&lt;img src=&quot;imageurl&quot; align&quot;left&quot; height=&quot;96&quot; width=&quot;60&quot;&gt;&lt;/td&gt;

          &lt;td&gt;&lt;p&gt;Text Here&lt;/p&gt;&lt;/td&gt;

        &lt;/tr&gt;

      &lt;/tbody&gt;

    &lt;/table&gt;

    Or swap sides:

    &lt;table style=&quot;text-align: left; width: 100%;&quot; border=&quot;0&quot;

    cellpadding=&quot;1&quot; cellspacing=&quot;2&quot;&gt;

      &lt;tbody&gt;

        &lt;tr&gt;

         &lt;td&gt;&lt;p&gt;Text Here&lt;/p&gt;&lt;/td&gt;

         &lt;td&gt;&lt;img src=&quot;imageurl&quot; align&quot;left&quot; height=&quot;96&quot; width=&quot;60&quot;&gt;&lt;/td&gt;

        &lt;/tr&gt;

      &lt;/tbody&gt;

    &lt;/table&gt;

    Hope this helps.

    Dan

Question Stats

Latest activity: earlier.
This question has 2 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.