Why aren't my products clickable on aerobell.co.uk?

Solved

Why aren't my products clickable on aerobell.co.uk?

chanteleo
Excursionist
28 1 11

website: aerobell.co.uk/

 

clickable.png

When l click the product name or image , it is no longer clickable so it takes me to the product page.

Accepted Solution (1)

dmwwebartisan
Shopify Partner
12321 2552 3729

This is an accepted solution.

@chanteleo 

Please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

.grid-view-item__link {
    display: block !important;
    position: absolute !important;
}

.product-card__title {
    display: block !important;
    width: max-content !important;
    margin: 0 auto !important;
}

.price {
    display: block !important;
    text-align: center !important;
}

View solution in original post

Replies 2 (2)

devangfour
Shopify Partner
43 10 8

Hello @chanteleo 

 

I think you need to update your HTML.

Actually anchor tag is wrong closed

 

Thanks

 

If helpful then please Like and Accept Solution.
Want to modify or custom changes on store Hire me.
- Feel free to contact me on [email protected] regarding any help

dmwwebartisan
Shopify Partner
12321 2552 3729

This is an accepted solution.

@chanteleo 

Please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

.grid-view-item__link {
    display: block !important;
    position: absolute !important;
}

.product-card__title {
    display: block !important;
    width: max-content !important;
    margin: 0 auto !important;
}

.price {
    display: block !important;
    text-align: center !important;
}