I try to change the color of the border but nothing works out. Is it even possible with css? I already found this: How to affect other elements when one element is hovered and also How to style the parent element when hovering a child element?
Some java / jquery solution?
.wcppec-checkout-buttons {
outline: 10px solid #ffc439;
outline-offset: -10px;
}
#woo_pp_ec_button_cart {
height: 44px;
}
#woo_pp_ec_button_cart:hover>.wcppec-checkout-buttons {
outline: 10px solid #f1bb37;
outline-offset: -10px;
}
<div class="wcppec-checkout-buttons">
<div id="woo_pp_ec_button_cart">
</div>
</div>