Hi @gas1123,
You can use the below filter named “wcdn_head” to make the CSS changes as per your requirements. Kindly add the below-provided custom code in the “functions.php” file of your currently active theme:
/**
* Add this code snippet in the functions.php file of your currently active theme.
*/
function example_serif_font_and_large_addressss() {
?>
<style>
/* Override to stack addresses vertically */
.billing-address, .shipping-address {
width: 100% !important; /* Full width for vertical stacking */
float: none !important; /* Remove float to stack vertically */
margin-bottom: 1em; /* Add space between addresses */
}
</style>
<?php
}
add_action( 'wcdn_head', 'example_serif_font_and_large_addressss', 20 );
The output of this custom code will be displayed like: https://prnt.sc/vqg9eOayn8Zv in a single column.
Please check at your end and let us know how it goes.