Designing with in line attachments

lupo

New Member
When I place a jpeg image in a message it seems to take up a line in the message and justified left, no matter where I place it when composing, is there anyway to say place a verticle image and then have text to the right side or center the image?
Thanks
 

lupo

New Member
Okay I figured out how to center the text and images, the problem was they have to be on their own line when composing
 

stanbusk

Administrator
Staff member
Use the Styled Text format and a table. For example, with an online picture:
Code:
<table border="0">
<tr><td><img src="http://www.maxprog.com/pictures/box_iCash_v2.jpg" alt="" border="0" /></td>
<td>YOUR TEXT HERE</td></tr></table>
and an inline picture:
Code:
<table border="0"> 
<tr><td>{File:"logos93.jpg"}</td> 
<td>YOUR TEXT HERE</td></tr></table>
Online means the picture is available on your web site.
Inline means the picture is available as an attachment.
 
Top