Hi,
I need help decreasing the line spacing on our tables for product descriptions. See here:
https://www.coastalcoffeecollective.com/products/new-product-copy
Would ideally like spacing half the size. Can not find the code anywhere.
A user needs to reduce line spacing in product description tables on their Shopify store, wanting spacing approximately half the current size. They’ve been unable to locate the relevant code.
A solution was provided using CSS:
--table-cell-padding-block variable to 0.5remThis CSS snippet should be added to the theme’s custom CSS to decrease the vertical padding between table cells and achieve the desired tighter spacing.
Hi,
I need help decreasing the line spacing on our tables for product descriptions. See here:
https://www.coastalcoffeecollective.com/products/new-product-copy
Would ideally like spacing half the size. Can not find the code anywhere.
@media screen and (min-width: 700px) {
table {
--table-cell-padding-block: 0.5rem;
}
}