SQLite How to by Tag:
Why don't you enclose the two tables into one table with two cells? Set the outer tables so the <td> are 50/50 width. Set the inner tables to be 100%...
WooCommerce Product description uses the_excerpt() function... try like this... function new_product_defaults_wrap_open() { echo '<div class="product-details">'; the_excerpt(); } ...
You can add the following to your CSS to overwrite this specific pre tag .page-content.entry-content pre { white-space: normal; } If you use a child theme, you can add it...
At the end I managed it with following code: add_action( 'woocommerce_product_tabs', 'woocommerce_product_description_tab', 14 ); ...