Hello Nadia,
You have correctly posted here now. That question was posted on the wrong location - PEER to PEER. That’s the reason why haven’t answered it.
Anyway, to answer your question, yes of course it is possible with custom CSS. Those pages are controlled by Woocommerce template so our option is by adding custom CSS on Theme Options > Global CSS
Did you add this custom CSS?
.woocommerce li.product .entry-header h3 {
min-height: 90px;
font-size: 16px;
line-height: 25px;
}
Please update it to this one:
.woocommerce li.product .entry-header h3 {
font-size: 20px; /*Adjust to your preferred font size*/
line-height: 25px;
}
Min-height property is causing the space.
See this: https://screencast-o-matic.com/watch/cqXtQ0UBWD
The following might also help: