Hi there,
While I’m not exactly sure where on your site you’re seeing that table, you could try adding custom CSS to force a width on the column 🙂
Hey, sorry for the delay. That table is on the last page of WooCommerce payment process – it’s a table with summary of products and message from customer. I hope you will be able to help me resize that text (message from customer) area. How to make it less wide?
We can try although the layout seems to be pretty odd to start with 🙂
Do you have a direct link to that page to check the underlying CSS and what’s possible?
Thanks for that link – that came in quite handy 🙂
To force a specific width on that table, you could try the following custom CSS under **Appearance > Customize > Additional CSS**:
table.shop_table th {
width: 50%;
}
This is it, thanks for your support!
Thank you!
There is one more problem. My cart table with products now looks like this – attachment link. There is a way to view separate table width for that table?
Link: https://ibb.co/DfzFm6p
Oh man, I should have been more specific in targeting ONLY that page. Please replace the previous code I shared with the following:
.woocommerce-order-received table.shop_table th {
width: 50%;
}
Thanks!