Link to home
Start Free TrialLog in
Avatar of Rob_Smuker
Rob_SmukerFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Outlook Stationery template Double spacing

Hi there

I have created an Outlook template but when I use it to create an email the text is double spaced when I use return.
If I use Shift + return then I get single spacing

How do I solve this issue?
I have attached my code
Many thanks this is driving me nuts
QSStatEE2.txt
Avatar of Kimputer
Kimputer

add some code after the title closing tag:

<STYLE type=text/css>
<!--
body,td,th,p {
	font-family: Arial, Helvetica, sans-serif;
margin:0in;
margin-bottom:.0001pt;
font-size:12.0pt;
color: #5789b5;
}
-->
</STYLE>

Open in new window

Avatar of Rob_Smuker

ASKER

HI I am not sure how to use this code. I have added it after the closing title tag and I still get double spacing
Tested with Outlook 2003 + 2007
Can you post full file again?
HI There
I am using Outlook 2010
File attached Thanks for your help
QSStatEE3.htm
remove the code (I see it twice):
 padding: 10px 0 10px 0;

It was already working after you added my code if you started typing at the "Your ref: Our ref:" part, but this last edit will make it work at the address part and further too
Hi There

I still have the problem after removing the "padding: 10px 0 10px 0"

If I type at Your ref / Our Ref and then press return I get double spacing. Code below

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
      <html xmlns="http://www.w3.org/1999/xhtml">

<head>
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
      <title>Test Template</title>

<STYLE type=text/css>
      <!--body,td,th,p {font-family: Arial, Helvetica, sans-serif;margin:0in;margin-bottom:.0001pt;font-size:12.0pt;color: #5789b5;}-->
</STYLE>

      <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>


<body>


      <IMG SRC = "test.gif"><br>

      <HR SIZE = "6" COLOR="#ED2893">

             <p>
                  Your Ref:<br>
                  Our Ref:<br><br>
            </p>

                                                
                                                        
              <p style="color: #000000;font-family: Arial, sans-serif; font-size: 10.5pt;line-height: 100%">
                     addresss<br>
                    <B>T:</B> 1`2345678 / <B>F:</B> 12345678 / <B>DX:</B> 1234567890<br>
                    
              </p>

                                                                   
              <p style="color: #000000; font-family: Arial, sans-serif; font-size: 8pt">
                     <B>Partners: blaaaa
                  Blaaaa
                  Blaaaa
                  Blaaa

      <img src="image1.jpg"">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="image2.jpg">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="image3.jpg">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="image4.jpg">
                                                                                          
</body>
ASKER CERTIFIED SOLUTION
Avatar of Kimputer
Kimputer

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial