Skip to content

Instantly share code, notes, and snippets.

@kimcoleman
Created January 17, 2020 12:37
Show Gist options
  • Select an option

  • Save kimcoleman/850f4c3c111db31c834bbbc96a3a01db to your computer and use it in GitHub Desktop.

Select an option

Save kimcoleman/850f4c3c111db31c834bbbc96a3a01db to your computer and use it in GitHub Desktop.
Custom CSS for Membership Checkout page using CSS float: 2 Column Layout for "Account Information" and "Billing Information" sections. Raw
.pmpro-checkout .pmpro_form #pmpro_user_fields {
float: left;
width: 48%;
}
.pmpro-checkout .pmpro_form #pmpro_billing_address_fields {
float: right;
width: 48%;
}
.pmpro-checkout .pmpro_form #pmpro_payment_information_fields {
clear: both;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment