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 biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I'm having a problem with outlooks

Status
Not open for further replies.

help120

Technical User
Apr 15, 2001
198
US
I'm having a problem with outlooks stationery.. I've created my own template and saved as an html file.. and when I go to tools/options/compose and pick my html file out of the stationery dir I get an added <div> </div> tag at the top of my code. Refer to my ex below. How do I get rid of the added div tags?

My Code
---------------------------------------------------------

<html>
<head>
<title>test</title>
</head>
<body>
<hr color=&quot;#000000&quot; size=&quot;1&quot;>
Text goes here
<hr color=&quot;#000000&quot; size=&quot;1&quot;>
</body>
</html>

----------------------------------------------------------

Outlooks code

----------------------------------------------------------

<html>
<head>
<title>test</title>
</head>
<body>
<% '#####################outlook code######## %>
<div> </div>
<% '#####################outlook code######## %>
<hr color=&quot;#000000&quot; size=&quot;1&quot;>
Text goes here
<hr color=&quot;#000000&quot; size=&quot;1&quot;>
</body>
</html>

-----------------------------------------------------------
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top