Home Forums WoodMart support forum Checkout Field size

Checkout Field size

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #285399

    Riccardo95
    Participant

    HI guys,

    1) How can I increase the checkout field size more or less as in the screen?

    2) Also increase the checkout title text size at least per mobile

    Attachments:
    You must be logged in to view attached files.
    #285669

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    body.woocommerce-checkout input[type=text], 
    body.woocommerce-checkout input[type=email], 
    body.woocommerce-checkout input[type=password],
    body.woocommerce-checkout input[type=search], 
    body.woocommerce-checkout input[type=number], 
    body.woocommerce-checkout input[type=url], 
    body.woocommerce-checkout input[type=tel], 
    body.woocommerce-checkout input[type=date], 
    body.woocommerce-checkout select, 
    body.woocommerce-checkout textarea {
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
        height: 42px;
        border: 2px solid rgba(129,129,129,.2);
        border-radius: 0;
        background-color: transparent;
        box-shadow: none;
        vertical-align: middle;
        font-size: 14px;
        transition: border-color .5s ease;
    }

    Please change the padding and height to increase the field, remove the lines you do not change.

    Best Regards

Viewing 2 posts - 1 through 2 (of 2 total)