How can I disable the product tile hover function on my website?

Hey guys,

I was wondering if you could help, I am just adjusting some of the blocks on my website.

By default when you hover over a product tile it opens up the box showing add to cart and quick view. I am wanting to remove the hover over function so it’s always there.

Can someone help me in telling me what I need to remove please? Please see the example below!

Website - www.directcomputers.co.uk

@Anonymous

can you please check first your theme customization setting may be allow this if doesn’t please add below code.

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css ->paste below code at the bottom of the file.
@media screen and (min-width: 1024px) {
.productitem--actions {
position: relative;
visibility: visible;
    opacity: 1;
}
}