Hi @marketing1on1com,
You can use the custom CSS code below to change the styles of the “edit cart” link o the order summary.
/**
* Add custom CSS styles for the checkout and cart pages: order summary edit cart link.
*/
function fluidcheckout_enqueue_custom_styles_checkout() {
// Bail if not on the checkout page
if ( ! function_exists( 'is_checkout' ) || ! ( is_checkout() || is_cart() ) ) { return; }
// Define the style handle based on the current page
$style_handle = is_checkout() ? 'fc-checkout-steps' : 'fc-pro-cart-layout';
// Enqueue your inline styles
wp_add_inline_style( $style_handle, '
.fc-wrapper .fc-checkout-order-review__head .fc-checkout-order-review__header-link {
display: inline-block;
padding: 5px 10px;
border-radius: 5px;
color: white;
background-color: gold;
}
' );
}
add_action( 'wp_enqueue_scripts', 'fluidcheckout_enqueue_custom_styles_checkout' );
We also have a couple of articles that might help you customize your checkout by changing colors and other styles:
As well as more detailed customizations such as custom fields or changing labels of checkout steps:
You can view all documentation articles in the link below:
https://fluidcheckout.com/docs/
I’m closing this topic for now. If you need further assistance, simply reply to this topic to re-open it.
Best,
Diego.