want to add contact icons

want to add contact icons

sahilkochhar1
Excursionist
13 0 6

Screenshot 2025-03-24 122846.png

i want to add these contact links bottom of the buy now button with link but i couldn't find any app like this and some are premium app. Is it possible to do it via coding

Replies 8 (8)

solverStaff
Shopify Partner
414 41 71

Hello there

It's easy to add by custom coding. It would be great if you contact a expert to add it on the footer. If you'd like to discuss this more, don't hesitate to send me a PM.

 

Regards

Titu

 Shopify Expert | Theme Developer | Quick Fixes


 Need Shopify help? Let’s chat! WhatsApp


 Portfolio: SolverStaff - Shopify Expert

sahilkochhar1
Excursionist
13 0 6

then can you provide me the code?

 

solverStaff
Shopify Partner
414 41 71

Yes, If you want then I can share that code

 Shopify Expert | Theme Developer | Quick Fixes


 Need Shopify help? Let’s chat! WhatsApp


 Portfolio: SolverStaff - Shopify Expert

sahilkochhar1
Excursionist
13 0 6

yes please

solverStaff
Shopify Partner
414 41 71

 

body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f8f6f1;
        }
        .contact-container {
            display: flex;
            gap: 20px;
        }
        .contact-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 150px;
            height: 100px;
            background: #f4f2ec;
            border: 1px solid #ddd;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: 0.3s ease-in-out;
            text-decoration: none;
        }
        .contact-box:hover {
            background: #eae7df;
            transform: translateY(-5px);
        }
        .contact-box i {
            font-size: 24px;
            color: #000;
            margin-bottom: 8px;
        }
        .contact-box p {
            font-size: 14px;
            font-weight: bold;
            color: #333;
            margin: 0;
        }

 Shopify Expert | Theme Developer | Quick Fixes


 Need Shopify help? Let’s chat! WhatsApp


 Portfolio: SolverStaff - Shopify Expert

solverStaff
Shopify Partner
414 41 71

I can't share that code because of community rules

 Shopify Expert | Theme Developer | Quick Fixes


 Need Shopify help? Let’s chat! WhatsApp


 Portfolio: SolverStaff - Shopify Expert

sahilkochhar1
Excursionist
13 0 6

then how to fix this issue

 

solverStaff
Shopify Partner
414 41 71

If you'd like to discuss this more, don't hesitate to send me a PM.

 Shopify Expert | Theme Developer | Quick Fixes


 Need Shopify help? Let’s chat! WhatsApp


 Portfolio: SolverStaff - Shopify Expert