Make slideshow not linked to a URL ( not clickable) - Dawn Theme

Currently, the slideshow on the attached image below is clickable and linked to a URL. I do not want this particular slideshow to be linked to a URL.

Any advice is really appreciated.

URL: https://www.brain-boost.co.uk/

Dawn Theme

Roughly use custom css in that section to hide, disable, the overlay anchor tag by targeting the slideshow and that particular url using it’s href attribute as a selector

https://help.shopify.com/en/manual/online-store/themes/theme-structure/extend/add-css

https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors

change /pages/science to need

slideshow-component .slideshow__slide [href="/pages/science"] {
 display: none;
}