Stationery background image problem

J

John

Hi

I have created stationery with below code. Previewing in IE, the background
image appears as non-repeating and as large as its original size but when
installed as stationery in outlook, in a new message it appears repeated and
much smaller. What is the problem and how can I make the background image
not to repeat?

Thanks

Regards


Code
====

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE id=ridTitle>Esprit</TITLE>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<STYLE>
BODY {
background: url("C:/MyImage.jpg") no-repeat;
FONT-SIZE: 10pt;
FONT-FAMILY: Century Gothic;
BACKGROUND-COLOR: #ffffff
}
</STYLE>
<META content="MSHTML 6.00.2800.1106" name=GENERATOR></HEAD>
<BODY>

</BODY>
</HTML>
 
N

neo [mvp outlook]

Try...


<html>
<head>
<style type="text/css">
<!--
body { background-attachment: fixed ;
background-color: "#FFFFFF" ;
background-repeat: no-repeat ;
font-family: "Century Gothic" ;
font-size: 10pt ;
font-weight: normal ;
}
-->
</style>
<title></title>
</head>
<BODY BACKGROUND="MyImage.jpg">
<div>&nbsp;</div>
</body>
</html>


Image & HTML file should be in the program files\common files\microsoft
shared\stationerystationary folder.
 
N

neo [mvp outlook]

I don't have OL2007, but it doesn't suprise me that it isn't working. From
what I understand from OL2007 was revampled where it is always using Word as
the editor, so it is quite possible that it ignores the inline css.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top