Solved

Make product title clickable on collections page. Impulse theme

TreavorHHH
Excursionist
14 0 7

My product titles are not clickable on the collections.  My site it www.hanginghighhammocks.com

Accepted Solution (1)

made4Uo
Shopify Partner
3804 713 1124

This is an accepted solution.

Hi @TreavorHHH 

 

Without hiring someone to go inside your website and edit the code, you can use this CSS tricks to achieve same goal. Please follow the instructions below. 

 

1. From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code
2. Go to Asset folder and open the theme.css file
3. At very end of the code, add the code below

a.grid-product__link:after {
    content: "";
    background: red;
    width: 100%;
    height: 50%;
    position: absolute;
    cursor: pointer;
    z-index: 1;
    opacity: 0;
}

 

Volunteering to assist you!  Likes and Accept as Solution  is highly appreciated.✌
Coffee fuels my dedication. If helpful, a small Coffee Tip would be greatly appreciated.
Need EXPERIENCED Shopify developer without breaking the bank?
Hire us at Made4Uo.com for quick replies.
Stay in control and maintain your security by avoiding unnecessary store access!

View solution in original post

Replies 2 (2)

made4Uo
Shopify Partner
3804 713 1124

This is an accepted solution.

Hi @TreavorHHH 

 

Without hiring someone to go inside your website and edit the code, you can use this CSS tricks to achieve same goal. Please follow the instructions below. 

 

1. From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code
2. Go to Asset folder and open the theme.css file
3. At very end of the code, add the code below

a.grid-product__link:after {
    content: "";
    background: red;
    width: 100%;
    height: 50%;
    position: absolute;
    cursor: pointer;
    z-index: 1;
    opacity: 0;
}

 

Volunteering to assist you!  Likes and Accept as Solution  is highly appreciated.✌
Coffee fuels my dedication. If helpful, a small Coffee Tip would be greatly appreciated.
Need EXPERIENCED Shopify developer without breaking the bank?
Hire us at Made4Uo.com for quick replies.
Stay in control and maintain your security by avoiding unnecessary store access!
TreavorHHH
Excursionist
14 0 7

Worked flawlessly!