Page 1 of 1

text area cursor problem

Posted: Thu Mar 30, 2006 8:35 am
by seaten
Hi guys,

I am using a text area , but the problem is the cursor moves to the middle of the screen ? I know this is not a big issue but is there any way around it ?

Code: Select all

<label for="sel_product_description">Product Description:</label>
   
<TEXTAREA name="sel_product_description" wrap="physical" ROWS=6 COLS=40 id="sel_product_description" >
</TEXTAREA>

Posted: Thu Mar 30, 2006 8:38 am
by JayBird
This has nothing to do with PHP - Moved to client side Image

Posted: Thu Mar 30, 2006 9:02 am
by phpScott
a copy paste of your code and it works just fine for me

Posted: Thu Mar 30, 2006 11:33 am
by pickle
The problem is that you've got the opening <textarea> and closing </textarea> tags on different lines. There is some whitespace in between those tags, which gets inserted into the textarea. Put the opening and closing tags right beside each other and it should be fine.