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="#000000" size="1">
Text goes here
<hr color="#000000" size="1">
</body>
</html>
----------------------------------------------------------
Outlooks code
----------------------------------------------------------
<html>
<head>
<title>test</title>
</head>
<body>
<% '#####################outlook code######## %>
<div> </div>
<% '#####################outlook code######## %>
<hr color="#000000" size="1">
Text goes here
<hr color="#000000" size="1">
</body>
</html>
-----------------------------------------------------------
My Code
---------------------------------------------------------
<html>
<head>
<title>test</title>
</head>
<body>
<hr color="#000000" size="1">
Text goes here
<hr color="#000000" size="1">
</body>
</html>
----------------------------------------------------------
Outlooks code
----------------------------------------------------------
<html>
<head>
<title>test</title>
</head>
<body>
<% '#####################outlook code######## %>
<div> </div>
<% '#####################outlook code######## %>
<hr color="#000000" size="1">
Text goes here
<hr color="#000000" size="1">
</body>
</html>
-----------------------------------------------------------