My brain seems to have gone offline. Using NOF9, I am revising a PayPal
Store BUY feature. I want to have the user include a couple input values
with the PayPal buy. Using the Customized the URL feature I modified the
code to include the desired fields. However, I can't recall how to set the
size of the input field (parameter.input.text.???//). For example, for the
Name input I want to display a input box to handle +/-30 characters.

Where and how do I include the input value size in the code? See code
below:

action.value=https://www.paypal.com/cgi-bin/webscr
action.target=paypal
action.method=post
parameter.input.hidden.cmd=_cart
parameter.input.hidden.business=<%store.email%>
parameter.input.hidden.item_name=<%product.name%>
parameter.input.hidden.item_number=<%product.sku%>
=>parameter.input.text.name='enter name'
=>parameter.input.text.email=enter email
=>parameter.input.text.phone=pnone number
parameter.input.text.quantity=1
parameter.input.hidden.amount=<%product.price%>
parameter.input.hidden.shipping=<%product.shipping Cost%>
parameter.input.hidden.tax=<%product.salesTax%>
parameter.input.hidden.add=1
parameter.input.hidden.currency_code=<%store.curre ncyCode%>
parameter.input.hidden.on0=
parameter.input.hidden.os0=
parameter.input.hidden.on1=
parameter.input.hidden.os1=
includes.js.file1=formHandler.js
=>label.quantity=Quantity
=>label.phone=Telephone Number
=>label.name=Name

- Herman