Created
January 17, 2020 12:37
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .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