Reply To: Responsive, text colors and css style questions
Home › Forums › Agama Pro › Responsive, text colors and css style questions › Reply To: Responsive, text colors and css style questions
May 21, 2020 at 8:02 pm
#26791
Moderator
Hello, Diego!
You can change the product title globally:
/*Product titles font size globally*/
h2.woocommerce-loop-product__title{
font-size:20px!important;
}
…or just for particular products.
In this case, you need to find the exact post-# for the product and add it before the selector:
/*Product title font size particularly*/
.post-328 h2.woocommerce-loop-product__title,
.post-594 h2.woocommerce-loop-product__title
{
font-size:18px!important;
}
Use the code you want.
Please let me know If you need a help to discover the particular product post # (give me the product name and I will give you the right code)
Regards
-
This reply was modified 2 years, 8 months ago by
Zex.