Hello,
Kindly add this CSS code in the customize > custom CSS/JS.
.woocommerce ul.products li.product li.woo-desc {
display: block;
}
Hi,
that did not work but once a added this everything works.
.woocommerce ul.products li.product li.woo-desc {
display: block !important;
}
Thanks
one more question. How do I control color and text size of this description?
Thanks
Hello,
Please Add the CSS code in the custom CSS section of the customizer.
.woocommerce ul.products li.product li.woo-desc {
font-size: 16px;
color: #2ebcde;
}
Thanks you, works nicely.
I am also trying to change font,size and color in product title in product archive.Is that similar code? I cant get it to work.
Thanks
Hello,
Here is the code for product title in the product archive page.
.woocommerce ul.products li.product li.title a {
font-size: 18px;
color: #2ebcde;
}