Announcement

Collapse
No announcement yet.

size of tex box

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    size of tex box

    I would like to expand the size of the NETQUOTEVAR:SHIPUSERDEFINED"box on order01.html.

    Anybody know how I do this?

    #2
    Edit Act_Order01.html and look for:-

    Code:
    <input type="TEXT" name="SHIPUSERDEFINED" size="20" maxlength="255" value="NETQUOTEVAR:SHIPUSERDEFINED">
    Change the 20 to suit.


    You could also try replacing the entire line above above with:-

    Code:
    <textarea name="SHIPUSERDEFINED" rows="3" cols="30">NETQUOTEVAR:SHIPUSERDEFINED</textarea>
    Which will give you a box rather than a single line. You can tweak the 3 and 30 to suit but don't make it too big as Actinic only expects a maximum of 255 characters to be entered.

    Norman

    p.s. This is probably in the Advanced Guide which you can download from Actinic.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment

    Working...
    X