How do I centered the social icon under Newsletter? - Publisher Theme

Solved

How do I centered the social icon under Newsletter? - Publisher Theme

randytheasian
Pathfinder
115 0 23
Accepted Solution (1)

DaisyVo
Shopify Partner
4385 486 579

This is an accepted solution.

Hi @randytheasian ,

 

You can follow the steps here:

 

Step 1: Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
Step 2: From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/ypQ7nly2wv27
Step 3: Copy the code below and paste it there

 

Here is the code for step 3:

.footer-block--newsletter > ul.list-unstyled.list-social.footer__list-social {
    left: 50% !important;
    top: 100% !important;
    transform: translateX(-50%);
}

 

Here is the result:

DaisyVo_0-1734926185500.png

 

Let me know if it helps! 

 

Best,

Daisy.

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution

View solution in original post

Replies 5 (5)

pawankumar
Shopify Partner
710 102 123

Hi @randytheasian 
Please put this code in theme.liquid before body closing tag </body>

<style>
@media screen and (min-width: 750px) {
    .footer-block--newsletter {
        flex-wrap: nowrap;
        justify-content: center;
        display: block;
    }
        .footer-block__newsletter+.footer__list-social {
        position: unset !important; 
    }
}
</style>

Thanks!

- Need a Shopify developer? Chat on WhatsApp +91-9467121281
- Coffee Tip: Buymeacoffee  | Email: thepkpawankumar@gmail.com
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
Best regards,
Pawan
randytheasian
Pathfinder
115 0 23

It didn't work

IoannisM
Shopify Partner
13 3 2

Hi, it is a simple CSS task. I can fix it. Can I send you a collaboration request?

- If my answer was helpful, you can buy me a coffee.
- If you need more complex CSS, JS, and Liquid customization, contact me here.

Made4uo-Ribe
Shopify Partner
10119 2400 3033

Hi @randytheasian 

Try this one. 

  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:

 

@media screen and (min-width: 750px) {
    .footer-block__newsletter+.footer__list-social {
        position: absolute;
        bottom: -50% !important;
        right: 50% !important;
        transform: translate(50%);
    }
}

 

  • And Save.
  • Result:
  • Made4uoRibe_0-1734903487774.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.

DaisyVo
Shopify Partner
4385 486 579

This is an accepted solution.

Hi @randytheasian ,

 

You can follow the steps here:

 

Step 1: Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
Step 2: From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/ypQ7nly2wv27
Step 3: Copy the code below and paste it there

 

Here is the code for step 3:

.footer-block--newsletter > ul.list-unstyled.list-social.footer__list-social {
    left: 50% !important;
    top: 100% !important;
    transform: translateX(-50%);
}

 

Here is the result:

DaisyVo_0-1734926185500.png

 

Let me know if it helps! 

 

Best,

Daisy.

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution