Woocommerce product titles too large

I was able to change woocommerce titles on page https://friendsofoberlinvillage.org/shop/ , but was not able to change them on individual prouct pages. See https://friendsofoberlinvillage.org/product/note-cards/. I used the following CSS.

.woocommerce .product h3 {
font-size:30px !important;
}

How do I change it on the individual product pages?

Also note that the top row of products are not the same height even though they have the same dimensions. How do I force them to be the same height?

Thanks

Hi There,

Please try adding the following CSS under Customizer > Custom > Global CSS:

.woocommerce div.product .summary .product_title {
    font-size: 30px;
}
@media (min-width: 980px){
    .woocommerce li.product .entry-featured img {
        max-height: 312px;
    }
}

Thank you. That works.

Happy to hear that. :slight_smile: