How do I line up text Right of a picture on the Left?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have my picture source tag, and my paragraph aligned Right, and it lines up
right under the picture, and I need it across from the picture.
 
Right click on the Image, then under the Appearance Tab set the alignment to left.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
Okay, that was incorrect.

I have my picture source tag inserted before the paragrah. It is not aligned
to either side. I have my paragraph inserted directly under the picture, but
I can't get it to line up next to the picture. This is what I have:

<img src="http://i20.photobucket.com/albums/b236/priocorp/ShazamFlash.jpg"
alt="Image hosted by Photobucket.com">
</table>
</font><i>
<p ALIGN="Left">
<p ALIGN="Left"> <font
face="Arial-ItalicMT"> </font><b><font
FACE="Arial-BoldMT" SIZE="4" COLOR="#ff250a">Shazam! Flash:
</font></b><font FACE="ArialMT">
<p ALIGN="RIGHT">• Platform independent; can run on any computer
</font></i> </p>
<p ALIGN="RIGHT"><font FACE="ArialMT">
<i>with a web browser
</i></font> </p>
<p ALIGN="RIGHT"><font FACE="ArialMT"><i>• Accessible through PRIO’s
website </i></font> </p>
<p ALIGN="RIGHT"><font FACE="ArialMT"><i>• Expands the age range for easy
fitting of NVF</i></font> </p>
<p ALIGN="RIGHT"><i><font FACE="ArialMT">lenses to include prepresbyopic
patients
</p>

I could get rid of all the spaces, but it currently makes it line up the way
I'd like. Clearly I'm no professional at this.

Thanks.
 
Okay, that was incorrect.

I have my picture source tag inserted before the paragrah. It is not aligned
to either side. I have my paragraph inserted directly under the picture, but
I can't get it to line up next to the picture. This is what I have:

[snip]

Or maybe something like this:

<img
src="http://i20.photobucket.com/albums/b236/priocorp/ShazamFlash.jpg"
alt="Image hosted by Photobucket.com" align="left" width="324"
height="317">

<p style="font family:Arial-BoldMT; font-size:18px; font-weight:bold;
font-style:italic; color:#ff250a">Shazam! Flash:</p>
<p ALIGN="left"><i>• Platform independent; can run on any computer<br>
with a web browser</i></p>
<p ALIGN="left">et cetera</p>
<p ALIGN="left">et cetera</p>
<p ALIGN="left">et cetera</p>
<p ALIGN="left">et cetera</p>
<p ALIGN="left">et cetera</p>

The text lines up beside the image and to the right. Is that what
you're after?

If it is too close to the edge of the image for comfort, add a bit of
hspace to the image tag or you could insert a transparent gif to the
right of the image.

fido
 
It all looks like one big fuzzy blur. Hard to tell what's photo and what's
text. But you could put your photo in a table and set the table to align
left and float left. That way, your text will align itself to the right of
the picture.

Wally S
 
FYI
If that code snippet is from your page it is invalid Html
You have
<img src="http://i20.photobucket.com/albums/b236/priocorp/ShazamFlash.jpg"
alt="Image hosted by Photobucket.com">
</table>

You cannot have a image tag (which requires a container tag like <td> in a table) before a </table> tag
There should be at least a </td></tr> before the </table>
--




| Okay, that was incorrect.
|
| I have my picture source tag inserted before the paragrah. It is not aligned
| to either side. I have my paragraph inserted directly under the picture, but
| I can't get it to line up next to the picture. This is what I have:
|
| <img src="http://i20.photobucket.com/albums/b236/priocorp/ShazamFlash.jpg"
| alt="Image hosted by Photobucket.com">
| </table>
| </font><i>
| <p ALIGN="Left">
| <p ALIGN="Left"> <font
| face="Arial-ItalicMT">
</font><b><font
| FACE="Arial-BoldMT" SIZE="4" COLOR="#ff250a">Shazam! Flash:
| </font></b><font FACE="ArialMT">
| <p ALIGN="RIGHT">• Platform independent; can run on any computer
| </font></i> </p>
| <p ALIGN="RIGHT"><font FACE="ArialMT">
| <i>with a web browser
| </i></font> </p>
| <p ALIGN="RIGHT"><font FACE="ArialMT"><i>• Accessible through PRIO’s
| website </i></font> </p>
| <p ALIGN="RIGHT"><font FACE="ArialMT"><i>• Expands the age range for easy
| fitting of NVF</i></font> </p>
| <p ALIGN="RIGHT"><i><font FACE="ArialMT">lenses to include prepresbyopic
| patients
| </p>
|
| I could get rid of all the spaces, but it currently makes it line up the way
| I'd like. Clearly I'm no professional at this.
|
| Thanks.
|
|
| "Shelvis" wrote:
|
| > I have my picture source tag, and my paragraph aligned Right, and it lines up
| > right under the picture, and I need it across from the picture.
 
Back
Top