Jun 7th, 2010, 6:36 AM
Thanks Ben,
I have found the problem code, it doesn't like my internal css. If I remove the following, it works:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<style media="all" type="text/css">
.answer { font-size:80%; font-weight:bold;
font:Arial, Helvetica, sans-serif;
color:#000066;
line-height:100%;
}
.question { font-size:80%;
font:Arial, Helvetica, sans-serif;
color:#000066;
}
</style>
</head>
<body>
.....
</tr>
{if $ANSWER_FName}
<tr>
<td class="question">First Name</td>
<td class="answer">{$ANSWER_FName}</td>
</tr>
.......
</body>
</html>
Now the email works!
Is there a way to include internal CSS for my email responses?
Thank you
I have found the problem code, it doesn't like my internal css. If I remove the following, it works:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<style media="all" type="text/css">
.answer { font-size:80%; font-weight:bold;
font:Arial, Helvetica, sans-serif;
color:#000066;
line-height:100%;
}
.question { font-size:80%;
font:Arial, Helvetica, sans-serif;
color:#000066;
}
</style>
</head>
<body>
.....
</tr>
{if $ANSWER_FName}
<tr>
<td class="question">First Name</td>
<td class="answer">{$ANSWER_FName}</td>
</tr>
.......
</body>
</html>
Now the email works!
Is there a way to include internal CSS for my email responses?
Thank you