WebbSpots › Forums › Web Design For Everyone › CSS Hacks for use in Avada › Reply To: CSS Hacks for use in Avada
Lets help Avada with Woo custom checkout align the checkout order review fields and define the radio buttons. Lets also give the radio button a theme matched color.
In the page css:
.fusion-woo-checkout-order-review-tb ul li label:before, .fusion-woo-checkout-payment-tb ul li label:before {
border: 1px solid #000;
}
.fusion-woo-checkout-order-review-tb ul li input:checked+label:after, .fusion-woo-checkout-payment-tb ul li input:checked+label:after {
background: blue;
}
.fusion-woo-checkout-shipping-tb .checkbox span:before, .fusion-woo-checkout-tabs-tb.woo-tabs-titles-disabled .checkbox span:before {
border: 1px solid;
border-color: #000000;
}
.checkout .shop_table tfoot th {
width: 50%;
text-align: left;
}
.checkout .shop_table tfoot td label {
display: block;
}
- This reply was modified 3 months, 2 weeks ago by WebbSpots.
