Topic: Microsoft Outlook Signature

I've created an outlook signature using HTML.  It seems to work except for the graphic logo.  I'm using an older version of outlook (2000).  Any help would be great.  Here is the code I wrote:

<html>
<head>


<link href="root.css" rel="stylesheet" type="text/css">

</head>




<body>
<style type="text/css">


p {
width: 550px;
color: 818181;
font-family: arial;
font-size: 10px;
}

li {
color: Red;
}

.sizeA {
font-size: 300px;
}

.bold {
font-weight: bold;
}

.blackColor {
color: black
}

.greenColor {
color: 6ed92e
}


#centerDoc {
position: absolute;
left: 41px;
top: 83px;
padding:  15px; /*bottom left*/
}
</style>


   
       


<p><span style="font-weight: bold"><span style="color: black">Damon Thomas</span> - Designer, CEO, LEED AP, NOMA<br>
dthomas@centricdesignstudio.com<br>
dir 313.595.4914<br>
Centric Design Studio<br>
click on the CDS icon to view our website:
</p>


<a href="http://www.CentricDesignStudio.com">
<img src="emailIcon.gif" border="0" alt="www.centricdesignstudio.com">
</a>


<div id="centerDoc">
<p>P.O. Box 4148 - Southfeild, MI 48037<br>
ph 248.943.7177  -  fx 248.436.3401<br>
www.centricdesignstudio.com
</p>
</div>
<br>


<p class="greenColor">Please consider the envionment before printing this email, thanks.
</p>


</body>


</html>

Thanks,
mrdamon

Re: Microsoft Outlook Signature

Instead of using a local file, host the image on your web hosting and link to it that way:

<img src="http://www.yourdomain.com/emailIcon.gif" border="0" alt="www.centricdesignstudio.com">

Re: Microsoft Outlook Signature

Thanks falkencreative!!

I tested the signature and it appeared. 
However, the signature didn't apper with any of the css style settings (colors, font size, etc).  Should I host the whole HTML signature on my web hosting instead of ms outlook (my local computer)?

Re: Microsoft Outlook Signature

Keep in mind that for signatures to work, you can't use an external CSS file -- everything has to be internal. Thus,

<link href="root.css" rel="stylesheet" type="text/css">

probably won't work, and that may be why you are having issues.

Re: Microsoft Outlook Signature

...and unrelated to the code, but it caught my eye:  Southfeild should probably be Southfield?

Re: Microsoft Outlook Signature

Thank you Thelma. smile

Re: Microsoft Outlook Signature

Does anyone know how to internalize CSS code into HTML for my outlook e-mail signature? 
Here is a copy of my code:

<html>
<head>
<style type="text/css">

p {
width: 550px;
color: 818181;
font-family: arial;
font-size: 10px;
}

li {
color: Red;
}

.bold {
font-weight: bold;
}

.blackColor {
color: black
}
.greenColor {
color: 6ed92e
}

#centerDoc {
position: absolute;
left: 41px;
top: 83px;
padding:  15px; /*bottom left*/
}
</style>
</head>


<body>
<p><span style="font-weight: bold"><span style="color: black">Damon Thomas</span> - Designer, CEO, LEED AP, NOMA<br>
dthomas@centricdesignstudio.com<br>
dir 313.595.4914<br>
Centric Design Studio<br>
click on the CDS icon to view our website:
</p>


<a href="http://www.CentricDesignStudio.com">
<img src="http://www.centricdesignstudio.com/emailIcon.gif" border="0" alt="www.centricdesignstudio.com">
</a>


<div id="centerDoc">
<p>P.O. Box 4148 - Southfield, MI 48037<br>
ph 248.943.7177  -  fx 248.436.3401<br>
www.centricdesignstudio.com
</p>
</div>
<br>


<p class="greenColor">Please consider the envionment before printing this email, thanks.
</p>
</body>
</html>

Re: Microsoft Outlook Signature

I think you've done it. Your first post had a separate stylesheet root.css which cannot be read by an email, but in your last post you have put the styles inside style tags in the head section, so that they are inside the same page code.

Alternatively you use inline styles, for example for every p tag you would have
<p style="width: 550px; color: 818181; font-family: arial; font-size: 10px;">..........</p>

and so on.

Re: Microsoft Outlook Signature

Hi

Do you know if it is possible to host an Outlook signature online so a few people can use the signature. Then by just changing the html file online everyones signature is updated.

Thanks

Dave

Re: Microsoft Outlook Signature

dmic2009 wrote:

Hi

Do you know if it is possible to host an Outlook signature online so a few people can use the signature. Then by just changing the html file online everyones signature is updated.

Thanks

Dave

I don't believe this is possible -- the signature has to be contained within the email itself.