What's your biggest current challenge? Have your say in Community Polls along the right column.

Multicolumn section icon into a button

Solved

Multicolumn section icon into a button

VicBrew1
Excursionist
41 1 9

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: 

Screenshot 2024-11-16 100441.png

 

Not like this: 

Screenshot 2024-11-16 100941.png

I appreciate any help! 😭

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
9133 2180 2688

This is an accepted solution.

Hi @VicBrew1 

Try this one, this make the logo clickable the label will be hidden. 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. 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;
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1731779379622.png

     

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better! 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.

View solution in original post

Replies 6 (6)

devcoders
Shopify Partner
564 80 142

Hello @VicBrew1 

Can you share the collaborator request code with me so I will check it.

Shopify Developer: Helping eCommerce Stores

If you need assistance with your store, feel free to contact us at devcodersp@gmail.com
WhatsApp No: +91 8516919310 If my assistance was helpful, please consider liking and accepting the solution. Thank you!
VicBrew1
Excursionist
41 1 9

Yes! Thank you! I will message you directly. 

Made4uo-Ribe
Shopify Partner
9133 2180 2688

This is an accepted solution.

Hi @VicBrew1 

Try this one, this make the logo clickable the label will be hidden. 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. 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;
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1731779379622.png

     

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better! 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
VicBrew1
Excursionist
41 1 9

Thank you so freaking much! 😍 This worked! How would I do this for the top row? may I repurpose?

VicBrew1
Excursionist
41 1 9

Issue: It made the multicolumn clickable but now the multicolumn reviews won't sow. Any ideas for this? 

Screenshot 2024-11-16 153804.png

VicBrew1
Excursionist
41 1 9

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!