Woo commerce product link not working on mobile

Hello, Thank you for your amazing theme!

I am having trouble opening link to product detailed page from product achieve page with mobile.
The links are not clickable and just showing the photo of products (the button and prices I got rid of by Custom CSS, I tried put those back on, but still not working even through the buttons.)

The website is this:

If you can advise me on this that would be great.
Thank you very much!

Hi @caluyadesign,

I hope you are well today and thank you for your question.

The links are not clickable and

You can make it work by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Unite Options -> Other -> Custom CSS


div#secondary {
    position: static;
}
just showing the photo of products (the button and prices I got rid of by Custom CSS, I tried put those back on, but still not working even through the buttons.)

You can display button and prices by using the below CSS code.

.woocommerce #page ul.products li.product .button, 
.woocommerce #page ul.products li.product .price {
    display: block;
}

Best Regards,
Movin