Forums

Example text in box

lagulalupis 15 Jul, 2010
For an emailaction im trying to creat a form.
Till now everything works but now i have a question.
I want a example text in a textbox.
But i can't put it in de box and save, it wont appear, and a can't put it in de config.
So :
People just need to push the button and the example text will send with the form.
How can i get this text saved in a textbox.

Tnx
GreyHead 16 Jul, 2010
Hi lagulalupis,

I find it hard to completely understand your question.

To add example text to a text area you can edit the Form HTML
<textarea . . .>Example text here</textarea>


Bob
lagulalupis 16 Jul, 2010
Oke ill try with an images and code
Where the arrow points i would like to put a text people can send or remove to send there own message.
I cant seem to find the lne you gave.
Tanx for everything.


<div class="form_item">
  <div class="form_element cf_text"> <span class="cf_text">Emailactie Sultana</span> </div>
  <div class="cfclear"> </div>
</div>

<div class="form_item">
  <div class="form_element cf_textbox">
    <label class="cf_label" style="width: 150px;">Naam</label>
    <input class="cf_inputbox required" maxlength="150" size="30" title="Naam is verplicht" id="Naam" name="Naam" type="text" />
  
  </div>
  <div class="cfclear"> </div>
</div>

<div class="form_item">
  <div class="form_element cf_textbox">
    <label class="cf_label" style="width: 150px;">Emailadres</label>
    <input class="cf_inputbox required validate-email" maxlength="150" size="30" title="Email verplicht" id="Emailadres" name="Emailadres" type="text" />
  
  </div>
  <div class="cfclear"> </div>
</div>

<div class="form_item">
  <div class="form_element cf_textarea">
    <label class="cf_label" style="display: none;">Click Me to Edit</label>
    <textarea class="cf_inputbox" rows="20" id="Bericht" title="Bericht" cols="60" name="Bericht"></textarea>
    
  </div>
  <div class="cfclear"> </div>
</div>

<div class="form_item">
  <div class="form_element cf_button">
    <input value="Verzenden" name="button_5" type="submit" /><input type="reset" value="Reset"/>
  </div>
  <div class="cfclear"> </div>
</div>
GreyHead 16 Jul, 2010
Hi lagulalupis,

<textarea class="cf_inputbox" rows="20" id="Bericht" title="Bericht" cols="60" name="Bericht">Example text people can send</textarea>


Bob
This topic is locked and no more replies can be posted.