Hi!
Store: https://qtupb6-n1.myshopify.com/
Is there a way to make the multicolumn images/icons into a button? I have links to all the columns but I don’t want to add a label as it is an eye sore unfortunately, completely ruins the aesthetic of the site.
I want it to look like this and be clickable:
Not like this:
I appreciate any help! 
2 Likes
Hello @VicBrew1
Can you share the collaborator request code with me so I will check it.
1 Like
Yes! Thank you! I will message you directly.
1 Like
Hi @VicBrew1
Try this one, this make the logo clickable the label will be hidden.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.multicolumn-card.content-container {
position: relative;
}
.multicolumn-card.content-container .multicolumn-card__info {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 10px;
text-align: center;
width: 80%;
opacity: 0;
pointer-events: all;
}
.multicolumn-card.content-container {
cursor: pointer;
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
1 Like
Thank you so freaking much!
This worked! How would I do this for the top row? may I repurpose?
Issue: It made the multicolumn clickable but now the multicolumn reviews won’t sow. Any ideas for this?
FIGURED IT OUT! So I put the code in the CSS box after clicking the section and then added a link label. Works perfectly! THANK YOU!
1 Like
Is there a way to do this but for an image that has a button?