Hi,
I wanted to change the font size of the woocommerce short description that appears under my products page.
I have added the following code to functions.php file in order to be able and show a short description under each product image:
add_action('woocommerce_after_shop_loop_item_title','woocommerce_template_single_excerpt', 5);
I have also hidden the short description from the product page using the following css:
div.product-short{
display: none;
}
Inside each product I have added a small table with the amount of items of the bulk order plus the price of each individual item.
I wanted to change the font size of the text inside the table and make it bold so I put this css code:
table{
font-size: 0.8em;
font-weight: bold;
}
Only problem is that when I use this css code it interferes with the font in the tables of some gravity forms I have created inside some pages. Basically to give you an example, if you click on the page of the umbrella product which you can find either in the home page at the bottom or in the shop page and you redirect into the product page you can see the drop down option “Quantità” being very small.
Is there a way to target only the text of the tables inside the product short description?
Thanks in advance.