How to change the product description font size from the featured collection under the product page?

Hi @JacJacC ,

I’ve reviewed your store and observed that the CSS code that you have added is working. I am making some changes in the code to make the section appear like the homepage featured collection section. You can modify the font-size, line-height values to as per your need.

.card__heading p {
    font-size: 12px !important;
    font-weight: normal;
    line-height: 1.2;
    margin: 0 0 10px 0;
    padding: 0;
}
.card__heading p span {
    font-size: 12px !important;
    font-weight: normal;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}
.card__heading a {
    display: block;
    font-size: 18px;
    font-weight: bold !important;
    margin: 0 0 10px 0;
    padding: 0;
}

Once you’ve added the CSS code on the section’s custom CSS block, save your changes, and the issue should be resolved. If you need further assistance, feel free to reach out.

Thank you.

1 Like