campagnolo1
Technical User
Trying to get a shopping cart together and am stuck with a memo input field that I would like to span across multiple lines (it's for special shipping or order instructions). Unfortunately it's not working out correctly. Here is the code I'm using:
<table width="550" border="0" align="center" cellpadding="5" cellspacing="1" class="entryTable">
<tr class="entryTableHeader">
<td colspan="2">Special Instructions</td>
</tr>
<tr>
<td width="150" class="label">Memo</td>
<td class="content"><textarea name="txtMemo" class="textarea" id="txtMemo" rows="5" cols="80"></td>
</tr>
</table>
The table appears nicely on the site, so does the input box with scroll bar. But inside the textbox is all the code that comes after <td class="content"><textarea name="txtMemo" class="textarea" id="txtMemo" rows="5" cols="80">
Any ideas what I'm missing here....?
<table width="550" border="0" align="center" cellpadding="5" cellspacing="1" class="entryTable">
<tr class="entryTableHeader">
<td colspan="2">Special Instructions</td>
</tr>
<tr>
<td width="150" class="label">Memo</td>
<td class="content"><textarea name="txtMemo" class="textarea" id="txtMemo" rows="5" cols="80"></td>
</tr>
</table>
The table appears nicely on the site, so does the input box with scroll bar. But inside the textbox is all the code that comes after <td class="content"><textarea name="txtMemo" class="textarea" id="txtMemo" rows="5" cols="80">
Any ideas what I'm missing here....?