Problems with creating stationery in Outlook 2003

L

Leowin

When I create a new Stationery item (or use an existing one). I can only get
the picture to either be at the bottom of the email (below the autosignature)
or as a watermark repeated over the whole page. I cannot get the picture to
be at the top of the page.
 
S

Susan

This has to be done in an HTML editor and you need to set the properties on
the image so that it displays where you want it.

Say you want the image to appear in the top left corner of your email - as
in a logo.
The code for this would simply be:

< img border="0" src="yourfolder/yourimage.gif" style="float: left"
width="???" height="??" >

Just fill in the image information and the location that you want it.
Hope that helps
 
L

Leowin

Thanks for the response - this is exactly what I have done except that the
image still insists on being on the bottom of the email below the
autosignature - I have forced it to the top / left in the html but it still
goes below everything. If the template is created and used in previous
versions of Outlook it works perfectly it seems that it is only in 2003 that
I have this problem.
 
L

Leowin

This is the code for one way I tried
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 1</title>
</head>

<body>

<p>
<img border="0" src="file://C:\Program Files\Common Files\Microsoft
Shared\Stationery\EmailBanner3.jpg" style="float: left"
width="426" height="80" >
</p>

</body>

</html>

This is the code for the other way
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML xmlns:eek: = "urn:schemas-microsoft-com:eek:ffice:eek:ffice"><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<META content="MSHTML 5.50.4807.2300" name=GENERATOR>
<STYLE>BODY {
BACKGROUND-POSITION: left top; MARGIN-TOP: 140px; FONT-SIZE: 10pt;
MARGIN-LEFT: 20px; COLOR: #B73C35; BACKGROUND-REPEAT: no-repeat; FONT-FAMILY:
Arial
}
</STYLE>
</HEAD>
<BODY
background="file://C:\Program Files\Common Files\Microsoft
Shared\Stationery\WebLayout2005.jpg">
<DIV> </DIV></BODY></HTML>

The first one puts the logo down at the bottom below the autosignature - the
second one repeats the banner across the whole email.
 
Top