I know this isn't "regular" CSS so I need to know how to properly format it.
In the Payment Settings > PayPal Commerce Platform is a tab Credit Card Field Styles with a field having the same name. In that field, by default is
How do I change it to use this
When I try to add anything additional (using the same format that is in the example) - those styles don't get added. I tried making some simple substitutions inside each of the quotes and the only thing I could change was the line-height. I really, really need borders around the input fields. FYI - the framework for the site is Suivant but I suspect this field might be needed by others.
It should be noted/warning that there is no history for this field.
In the Payment Settings > PayPal Commerce Platform is a tab Credit Card Field Styles with a field having the same name. In that field, by default is
Code:
{ "input": { "padding": "0 0.5em", "line-height": "calc(3.5em - 2px)", "-moz-appearance": "none", "-webkit-appearance": "none" } }
Code:
border: 1px solid #dfe1e1; border-radius: 0; display: block; font-family: inherit; font-size: 100%; height: 2em; line-height: 2; outline: 0 none; padding: 0 0.50rem; vertical-align: middle; width: 100%;
When I try to add anything additional (using the same format that is in the example) - those styles don't get added. I tried making some simple substitutions inside each of the quotes and the only thing I could change was the line-height. I really, really need borders around the input fields. FYI - the framework for the site is Suivant but I suspect this field might be needed by others.
It should be noted/warning that there is no history for this field.
Comment