Jump to content

[SOLVED] How to increase the Length of Field?


Recommended Posts

I only know that it should be change at global.css under your theme. But I tried, it seems not working. I am not good at style sheet, maybe I did in a wrong place.

I am also very curious on this. Hope some one could give an answer!


Thanks for your help.
Hope anyone can solve it.
Link to comment
Share on other sites

Try changing lines 1387-1390 of css/global.css in your theme's directory from:

form#account-creation_form input.text, 
form#account-creation_form #id_country, 
form#account-creation_form #id_state, 
 #authentication textarea { width: 17em }



to:

form#account-creation_form input.text, 
form#account-creation_form #id_country, 
form#account-creation_form #id_state, 
 #authentication textarea,
  #address form input.text { width: 17em }

Link to comment
Share on other sites

Try changing lines 1387-1390 of css/global.css in your theme's directory from:

form#account-creation_form input.text, 
form#account-creation_form #id_country, 
form#account-creation_form #id_state, 
 #authentication textarea { width: 17em }



to:

form#account-creation_form input.text, 
form#account-creation_form #id_country, 
form#account-creation_form #id_state, 
 #authentication textarea,
  #address form input.text { width: 17em }



Yes, it's work in the Create account page!
but I also want applying to "My Account" > "My addresses" > "Update".
How can I achieve?
Thanks a lot!!
Link to comment
Share on other sites

Hi rocky,

Thanks for your help.
but the length of the fields of “My Account” > “My addresses” > “Update”. are still as same as my attachment on the top.
I have already changed the global.css to

form#account-creation_form input.text, 
form#account-creation_form #id_country, 
form#account-creation_form #id_state,   
#authentication textarea,   
#address form input.text { width: 25em } 


as you teach me.
(only the length of fields of "create account" can be increased to 25em)

Please help, thank you so much!

Link to comment
Share on other sites

You're right. I made a mistake in my code. Try the following instead:

form#account-creation_form input.text,
form#account-creation_form #id_country,
form#account-creation_form #id_state,
  #authentication textarea,
  #address form p.text input { width: 25em }

Link to comment
Share on other sites

Hi rocky,

Fantastic! it's really works.
You are so helpful.

There is the final problem of this issue
I also want to increase the length of "Additional information" to 25em of
“My Account” > “My addresses” > “Update”.
(Please see attachment)

Then it will be very well!
Thank you again.

34187_wKQMa0Mh8gcsCXQwT8fc_t

Link to comment
Share on other sites

×
×
  • Create New...