All things Shopify and commerce
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
How do I go about getting my images in the multicolumn clickable on the spotlight theme? I see other threads about this but pertaining to the other themes. If possible, please include pictures of how to do this. Thanks in advance.
Solved! Go to the solution
This is an accepted solution.
@jladi90 Please follow below steps to make images clickable in multicolumn on spotlight theme,
<a {% if block.settings.link == blank %} role="link" aria-disabled="true" {% else %} href="{{ block.settings.link }}" {% endif %} >
</a>
.multicolumn-card a:not([href]) {
cursor: auto;
}
This is an accepted solution.
@jladi90 Please follow below steps to make images clickable in multicolumn on spotlight theme,
<a {% if block.settings.link == blank %} role="link" aria-disabled="true" {% else %} href="{{ block.settings.link }}" {% endif %} >
</a>
.multicolumn-card a:not([href]) {
cursor: auto;
}
Thank you so much. It worked!