Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Outlook - template - stationery - fixed graphics

Status
Not open for further replies.

paperlion

Programmer
Oct 23, 2003
15
US
This is a duplicate of a post I placed in the MS Office forum - figured not everyone search headings globally through the forums..

Anybody wrestled with Outlook with the following (I'm using 2000, but they may all handle this situation in a similar enough way)?

I am designing a custom stationery for use as a organizational letterhead template. There is probably an easy way to fix the positioning and surrounding space below it (it's as a header before any text) so that it can't get moved downward and out of position accidently.

I am thinking to go back into the image editor, and and space below the image on the (transparent) canvas. This should force empty space below the graphic, but wouldn't do anything for a secretary tabbing her way into the text/ body area, and then just starting to type. This would cause the type to be above this header graphic.

Also, I wanted to add a footer graphic at the bottom. I have it set up now as a signature, so that it can be 'rubber stamped' into the bottom, but it's a rinky-dink solution. I haven't worked with the VBA - is that what these answers would take?

Thanks, thanks, whoever you are - really!
 
Below works fine for me

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML><HEAD>
<META HTTP-EQUIV=CONTENT-TYPE CONTENT="text/html; charset=windows-1252">
<META CONTENT="MSHTML 5.50.4134.600" NAME=GENERATOR>
<STYLE>
<!--
BODY {
margin-top: 50px; font-weight: normal; font-size: 10pt; color: black; font-family: Arial, Verdana, sans serif;
}
.LOGO {
position: absolute; top: 1mm; left: 1mm;
}
//-->
</STYLE>

<BODY BGCOLOR=#FFFFFF>
<DIV CLASS=LOGO>
<P><IMG SRC="[URL unfurl="true"]http://www.yoursite.co.uk/youremaillogo.gif"></P>[/URL]
</DIV>
</BODY></HTML>

HTH

Andrew
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top