Corecommerce Styling new order attribute fields in Billing Checkout
Permalink
I have created a new attribute field under Billing order attributes, problem is I need to change the size of the newly created field to be only 1 line
Please see screenshot and thanks in advance for any help
Please see screenshot and thanks in advance for any help
You should be careful what you do. There are several plugins to manage different payments gateway in ecommerce. Not using those and trying to add fields for credit card data manually can potentially lead you to disaster.
If you are thinking about saving credit card data in your database yourself, don't do it, it is dangerous and your customers would have ground to sue you.
Otherwise, if you want the text field to be only one line it should not be a textarea but just a text field.
to put fields in one row, provided you have enough horizontal space, just use some css either for the fields themselves or for DIVs around the fields:
Good luck
If you are thinking about saving credit card data in your database yourself, don't do it, it is dangerous and your customers would have ground to sue you.
Otherwise, if you want the text field to be only one line it should not be a textarea but just a text field.
<input type="text">
to put fields in one row, provided you have enough horizontal space, just use some css either for the fields themselves or for DIVs around the fields:
float:left;
Good luck
Most countries have laws and banking regulations about saving credit card data on a database, and particularly on a web connected database.
I would like to specify the size of the new fields, and possible put them on 1 row using tables or CSS