<div>Martijn,</div>
<div>&nbsp;</div>
<div>Thank you very much. Just as you said, there was a&nbsp;space in between openning and closing tags, but the reason I missed it was because&nbsp;I had indented like&nbsp;the following:<br>_&lt;textarea name=&quot;var&quot;&gt;</div>

<div>_&lt;/textarea&gt;<br>&nbsp;</div>
<div>since it was part of an if tag block. So I changed it like the following:<br>_&lt;textarea name=&quot;var&quot;&gt;&lt;/textarea&gt;<br>&nbsp;</div>
<div>Anyway, thanks again. I will pay much closer attention to how I format my code in the future.</div>
<div>&nbsp;</div>
<div>Cheers.</div>
<div>&nbsp;</div>
<div><span class="gmail_quote">On 9/19/05, <b class="gmail_sendername">Martijn Pieters</b> &lt;<a href="mailto:mj@zopatista.com">mj@zopatista.com</a>&gt; wrote:</span>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">Ivan Stout wrote:<br>&gt; It appears that the text input field I have created using a dtml method<br>&gt; has a default space character when you click in the field. Is there a
<br>&gt; way to get rid of this?<br><br>Depends on the HTML used; this is really a HTML question more than a DTML<br>question.<br><br>If this is a textarea, make sure there are no spaces between the opening<br>and closing tags:
<br><br>&lt;textarea ..attrs..&gt;&lt;/textarea&gt;<br><br>or, if you fill the textarea from with a dtml attribute, eliminate the<br>spaces there too:<br><br>&lt;textarea ..attrs..&gt;&amp;dtml-variablename;&lt;/textarea&gt;
<br><br>If you need multiple lines to avoid excessive wrapping or scrolling, put<br>the angle brackets on a new line to eliminate whitespace (newlines are<br>whitespace too!):<br><br>&lt;textarea ..attrs..<br>&nbsp;&nbsp;&gt;&lt;dtml-var expression_or_variable ..attrs..
<br>&nbsp;&nbsp;&gt;&lt;/textarea&gt;<br><br>If you used an input tag, the same applies, but now to whitespace between<br>the quotes of the value attribute.<br><br>Martijn Pieters<br><br><br>_______________________________________________
<br>Zope maillist&nbsp;&nbsp;-&nbsp;&nbsp;<a href="mailto:Zope@zope.org">Zope@zope.org</a><br><a href="http://mail.zope.org/mailman/listinfo/zope">http://mail.zope.org/mailman/listinfo/zope</a><br>**&nbsp;&nbsp; No cross posts or HTML encoding!&nbsp;&nbsp;**<br>
(Related lists -<br><a href="http://mail.zope.org/mailman/listinfo/zope-announce">http://mail.zope.org/mailman/listinfo/zope-announce</a><br><a href="http://mail.zope.org/mailman/listinfo/zope-dev">http://mail.zope.org/mailman/listinfo/zope-dev
</a> )<br></blockquote></div><br>