Link to home
Start Free TrialLog in
Avatar of Waqman
Waqman

asked on

How do you have a picture alongside text?

When you insert a picture in Frontpage 98, if you try to type text next to it, it automatically places it at the bottom of the picture.  How would you type text alongside a picture that appears starting from the top of the picture?  For example, Experts Exchange's website has an image bar to the left and text to the right. How is this done?
Avatar of mSH
mSH

All you need is a TABLE. Image in a column and Text in another.

Wagman, do this in the html part:
<table>
<tr>
<td><img src="yourpic.gif"></td>
<td align="left" valign="middle">The text you want to insert</td>
</tr>
</table>

Or simply do as mSH said and create a table of two cells.  use the alignment buttons to align the text in the middle and on the right
Wagman,

Either put the image and text into adjacent table cells, as the others have said, or simply set the align attribute of the image to "left" or right" (which has the advantage of allowing the text to 'flow' underneath the image.

Brian

ASKER CERTIFIED SOLUTION
Avatar of harper319
harper319

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
..which is what I just stated...