Home All Groups Group Topic Archive Search About

Stationery background image problem

Author
17 Nov 2007 4:44 AM
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>

Author
17 Nov 2007 1:45 PM
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.

Show quote
"John" <John@nospam.infovis.co.uk> wrote in message
news:u074VSNKIHA.4476@TK2MSFTNGP06.phx.gbl...
> 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>
>
>
>
Author
17 Nov 2007 8:11 PM
John
Hi Neo

Many thanks. Tried that but the problem still remains. I have attached the
main image e.jpg and how it appears in Outlook 2007 (tiled.jog). Both are on
scale.

Thanks again

Regards


Show quote
"neo [mvp outlook]" <n**@discussions.microsoft.com> wrote in message
news:%235jVfASKIHA.4272@TK2MSFTNGP06.phx.gbl...
> 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.
>
> "John" <John@nospam.infovis.co.uk> wrote in message
> news:u074VSNKIHA.4476@TK2MSFTNGP06.phx.gbl...
>> 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>
>>
>>
>>
>
>

[attached file: E.jpg]
[attached file: tiled.JPG]
Author
17 Nov 2007 8:41 PM
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.

Show quote
"John" <John@nospam.infovis.co.uk> wrote in message
news:eYvP%23XVKIHA.536@TK2MSFTNGP06.phx.gbl...
> Hi Neo
>
> Many thanks. Tried that but the problem still remains. I have attached the
> main image e.jpg and how it appears in Outlook 2007 (tiled.jog). Both are
> on scale.
>
> Thanks again
>
> Regards
>
>
> "neo [mvp outlook]" <n**@discussions.microsoft.com> wrote in message
> news:%235jVfASKIHA.4272@TK2MSFTNGP06.phx.gbl...
>> 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.
>>
>> "John" <John@nospam.infovis.co.uk> wrote in message
>> news:u074VSNKIHA.4476@TK2MSFTNGP06.phx.gbl...
>>> 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>
>>>
>>>
>>>
>>
>>
>
>
>

AddThis Social Bookmark Button