Site logo

Archived topic

Niche Theme CSS help

3 replies · Started by Jerry on April 15, 2021

Viewing posts 1–4 of 4

Hi there,

I'm not fully sure I understand it completely.

There seems to be multiple texts involved in this. There's the product title and the h5. I believe you're trying to do both?

You can try this CSS:

@media (min-width: 769px){
    .woocommerce ul.products li.product h2.woocommerce-loop-product__title {
        opacity: 0;
        transition: all 0.4s;
        transform: translateY(100%);
    }

    .woocommerce ul.products li.product h5 {
        opacity: 0;
        transition: all 0.4s;
        transform: translateY(50%);
    }

    .woocommerce ul.products li.product:hover h5,
    .woocommerce ul.products li.product:hover h2.woocommerce-loop-product__title {
        opacity: 1;
        transform: translateY(0);
    }
}

It looks weird w/o it though as there will be too much space on the bottom side of each product.

Hi there,

How is the H5 being added to the site ? I see it as part of the single product after the product title - is it being hooked in?

This archived topic is closed to new replies.