X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Length of Text Box Option (Help) (https://forum.x-cart.com/showthread.php?t=65041)

momentum 10-04-2012 04:40 AM

Length of Text Box Option (Help)
 
Hello Great Forum Users

I have been using the option of Text box for business cards. I just found out the fields for a text box are only 14 characters long.

My question is WITHOUT using a text area box where can I change the length of all the boxes have a text length of 40 characters.

I cannot find the TPL where to change the fields

Any and all suggestion would be greatly appreciated.

totaltec 10-04-2012 04:59 AM

Re: Length of Text Box Option (Help)
 
I don't see any limitations set on a text box. (4.5.2)

Template: /common_files/modules/Product_Options/customer_options.tpl

Line 39:
PHP Code:

{if $v.is_modifier eq 'T'}

            <
input id="po{$v.classid}type="text" name="{$poname}value="{$v.default|escape}/> 


So you can assign the size="40" or whatever you want it to be right there. Here is a link to all the properties that can be defined on a html input like that: http://www.echoecho.com/htmlforms05.htm

So to accomplish what you want use:
PHP Code:

<input id="po{$v.classid}type="text" name="{$poname}value="{$v.default|escape}size="40" /> 


momentum 10-04-2012 05:43 AM

Re: Length of Text Box Option (Help)
 
Hello

We Love you in Florida!

I would have never found that page to adjust that.

Thank You

BTW, in the main.css on line 2709 I had to change the width from 40% to 10%. If I did not the fields went way right of the text

table.product-properties .property-name {
width: 10%; (Was 40%)
}

Hopefully I did not screw anything else up in the store.

Thanks again for taking the time to help on this problem.


All times are GMT -8. The time now is 09:16 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.