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
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;
}