Hi @hellotoyou,
Fluid Checkout is fully compatible with the native WooCommerce filter hooks used to make changes to the checkout fields, be it to change labels, add new fields, or remove existing fields.
For more information about how to customize checkout fields, check our article:
Customizing existing checkout field and adding custom checkout fields
I’m closing this topic for now. If you need further assistance, please reply to this topic.
Best,
Diego
If someone is looking for this, here is :
/*Checkout fields*/
/*Retirar espaçamento*/
div.woocommerce form .form-row.form-row-first {margin-right: 0em !important}
.form-row.form-row-first.validate-required {width: 50% !important;float: left; display: inline-block;}
.form-row.form-row-last.validate-required {width: 50% !important; float: right; display: inline-block }
.form-row.address-field.form-row-first.validate-required {width: 50%; float: right; display: inline-block }
.form-row.address-field.form-row-first.validate-required.validate-postcode {width: 50%; float: right; display: inline-block }
/*Selecionar foco/ borda remover*/
div.woocommerce form .form-row input[type=text]:focus {outline:0px}
Thank you Diego