Help on a previous topic

Hello! I asked a question on the forum 6 days ago and have not received a response yet. Maybe it got missed by the developers but this is the link to my question: https://theme.co/apex/forum/t/larger-text-in-shop-and-price-closer-to-the-title/67112

I would appreciate your help on that. Thanks so much :slight_smile:

  • Nadia

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:

Hi Lely!

Oops I didn’t realize it was posted to the wrong forum.

I don’t remember adding that code but I will update it with the one you gave me. Thanks so much!

You’re always welcome Nadia!

Cheers.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.