• Resolved sorinv

    (@sorinv)


    Hi,

    its any option to remove round corners on the fields/input, on checkout?

    Thanks

    • This topic was modified 8 months, 3 weeks ago by sorinv.
Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi there,

    Thanks for reaching out!

    Yes, you can remove the rounded corners on the checkout input fields by adding a bit of custom CSS to your site. Here’s a snippet you can use:

    .checkoutwc .form-row input[type="text"], .checkoutwc .form-row select { border-radius: 0px !important; }

    You can add this CSS to Appearance → Customize → Additional CSS in your WordPress dashboard.

    Let me know if you need help with anything else!

    Best regards,

    Thread Starter sorinv

    (@sorinv)

    Thank you, yes works, but still remains some divs with round corner, the billing section and shipping section with the select option. Basically i try to change all the cornes on checkout to be without round corners.

    • This reply was modified 8 months, 3 weeks ago by sorinv.

    Thanks for your follow-up!

    By default, CheckoutWC uses rounded corners as part of its design style, and currently, there’s no built-in option in the UI to change that. Any customization beyond the default appearance — such as removing rounded corners — would require custom CSS.

    That type of customization is outside the scope of our support, particularly on the free version of the plugin. The changes you’re aiming for involve identifying the specific selectors of the elements you’d like to modify and applying your own CSS rules accordingly. As a one-time courtesy, I provide the selector below.

    .checkoutwc input,
    .checkoutwc select,
    .checkoutwc textarea,
    .checkoutwc .checkoutwc-step,
    .checkoutwc .checkoutwc-step__header,
    .checkoutwc .checkoutwc-sidebar,
    .checkoutwc .checkoutwc-payment-method,
    .checkoutwc .checkoutwc-step__footer,
    .checkoutwc .woocommerce-checkout-review-order-table,
    .checkoutwc .wc_payment_methods,
    .checkoutwc .wc_payment_method,
    .checkoutwc .place-order {
    border-radius: 0 !important;
    }

    If you’re comfortable working with CSS, you can use your browser’s developer tools to inspect the checkout elements and apply the styles you need. Otherwise, you may want to work with a developer to help achieve the design you’re looking for.

    Thread Starter sorinv

    (@sorinv)

    Thank you! I appreciate.

    Plugin Author Clifton Griffin

    (@clifgriffin)

    If you need any further help, just let us know!

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘remove round corner’ is closed to new replies.