Hi @umek,
Sorry for the delay in response.
1) Could you please share the screenshot of where exactly do you want to hide the text?
2) To increase the font-size of the text, could you please try the below code and check whether it works or not.
Code:
/**
* Add this code snippet in functions.php file of your currently active theme.
*/
function example_serif_font_and_large_address() {
?>
<style>
#page {
font-size: 1em;
font-family: Georgia, serif;
}
.order-addresses address {
font-size: 2.5em;
line-height: 125%;
}
</style>
<?php
}
add_action( ‘wcdn_head’, ‘example_serif_font_and_large_address’, 20 );
Please let us know how it goes.
Regards,
Kenil Shah