Be careful with the align settings. If you would like to have your images in a predictable location you should use a table to control your screen location.
This is easily accomplished with something like this.
< table width = 50% align = center >
<tr>
<td>
stuff & what not....<img src=something.jpg align=right> ...more stuff & what not
</td>
</tr>
</table>
The reason for this is that if you change resolutions, align = right will put it at the right border of your window. If you control the width of your text then you will end up with reliable locations with minor variations among resolution changes. Containers like table and div are great for controlling your website's display methodology.
Good luck I hope that this helps.
Last edited by gigawatz; 06-15-2003 at 01:00 PM..
|