I have the following code with two number variables; one for the the top table cell and one for the bottom table cell.
I am getting an error saying the second number variable is not defined.
Error: Variable Not Defined: articleSectionSpacer2
<!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" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
<head>
<!-- Marketo Variable Definitions -->
<meta class="mktoNumber" id="articleSectionSpacer1" mktoName="Article heading top spacer" default="30">
<meta class="mktoNumber" id="articleSectionSpacer2" mktoName="Article heading bottom spacer" default="30">
</head>
<body class="body">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="${articleSectionSpacer1}"></td>
</tr>
<tr>
<td>
Article section heading
</td>
</tr>
<tr>
<td height="${articleSectionSpacer2}"></td>
</tr>
</table>
</body>
</html>
Have I missed anything. I can't figure out why I'm getting this error.
Thanks