** I must not have explained my question very well. **
Yes you did, I must not have explained my answer well enough.
If you put all the text you want to enter into a single line (without line feeds), you can paste that single line into the space provided as long as it does not exceed the amount of text that field will accept.Eg.
- You can NOT enter this into a text form field:
code:
<p>
this is a line<br>
this is a line<br>
this is a line<br>
</p>
- You
CAN enter this:
code:
<p>this is a line<br>this is a line<br>this is a line<br></p>
If you want to maintain the line feeds in your code (the first example above), you'd need to change the field type for the header/footers from a text field (which only accepts a
single line of text) to a textarea field (see the previous link) which can accept
multi-line input.
- You CAN enter this into a textarea form field
(which you'd have to edit CalendarScript to provide instead - as per the previously linked message):
code:
<p>
this is a line<br>
this is a line<br>
this is a line<br>
</p>
It is a limitation of the HTML language not CalendarScript. Maybe you can get a better understanding of the differences between the HTML form field types than I apparently am able to provide, at this link?
LINK > HTML FORM TAGS
Dan O.
[This message has been edited by DanO (edited April 28, 2005).]