I am using v9 and trying to save space on products description. I used a textarea tag and am getting display problems..
My code is as follows:
<textarea name="descriptiontext" rows="10" cols="50";
readonly="readonly">
<actinic:variable name="ProductDescription" />
</textarea>
but in the textarea box i get the following:
<span style='color: #000000;'>
then the description of my product is here</span>
why am i getting these span tags in the textarea?
also if i copy and paste the code from Actinic i get this:
<textarea name="Descriptivetextarea" rows="10" cols="50";
readonly="readonly">
<actinic:variable formatting="font(Color|000000)" name="ProductDescription" />
</textarea>
Any ideas??
My code is as follows:
<textarea name="descriptiontext" rows="10" cols="50";
readonly="readonly">
<actinic:variable name="ProductDescription" />
</textarea>
but in the textarea box i get the following:
<span style='color: #000000;'>
then the description of my product is here</span>
why am i getting these span tags in the textarea?
also if i copy and paste the code from Actinic i get this:
<textarea name="Descriptivetextarea" rows="10" cols="50";
readonly="readonly">
<actinic:variable formatting="font(Color|000000)" name="ProductDescription" />
</textarea>
Any ideas??
Comment