Home > Back-end >  Customize Wordpress WooCommerce checkout page and Payment processing style
Customize Wordpress WooCommerce checkout page and Payment processing style

Time:11-13

I am trying to edit my Wordpress WooCommerce checkout page to remove the space above the PayPal checkout buttons but I don't know where I should start off. I feel like this can be easily done just by editing code but I'm not really familiar with HTML and CSS. My Desktop view

mobile view

My website is desired desktop view

desired mobile view

CodePudding user response:

You can rid of some space with a bit of CSS

.woocommerce-checkout #payment {
    margin-bottom: 0;
}
.woocommerce-checkout #payment div.form-row.place-order {
    padding-bottom: 0;
}
  • Related