Change position of the social media icon(s) in the footer

Solved

Change position of the social media icon(s) in the footer

EdensBakehouse
Excursionist
19 0 9

I would like to place the social media icons on the same line that is also the starting point of the text under Contact.

Also I would like to be able to change the size of the icons.

Website: edensbakehouse.nl

Password: yuidri

EdensBakehouse_2-1735823654219.png

Accepted Solution (1)

websensepro
Shopify Partner
1673 188 224

This is an accepted solution.

Hi @EdensBakehouse 

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.css / based.css file and paste the code in the bottom of the file.

span.svg-wrapper {
    width: 35px !important;  
}
@media(min-width:750px){
.footer-block--newsletter.scroll-trigger.animate--slide-in {
    width: 37.3%;
    margin: auto;
    display: flex !important;
    justify-content: flex-start !important;
    margin-top: 0 !important;
    
}
}
@media(min-width:1024px){
.footer-block--newsletter.scroll-trigger.animate--slide-in {
    padding-left: 5px !important;
}
}
@media(max-width:1023px){
.footer-block--newsletter.scroll-trigger.animate--slide-in {
    padding-left: 0px !important;
}
}

Result:

websensepro_0-1735825564936.png

 

If my reply is helpful, kindly click like and mark it as an accepted solution.

If you are happy with my help, you can help me buy a COFFEE

Thanks!

Need a Shopify developer? Hire us at WebSensePro For Shopify Design Changes/Coding
For Free Tutorials Subscribe to our youtube
Get More Sales Using Big Bulk Discount APP
Create Your Shopify Store For Just 1$/Month
Get More Sales Using Big Bulk Discount APP

View solution in original post

Replies 4 (4)

websensepro
Shopify Partner
1673 188 224

This is an accepted solution.

Hi @EdensBakehouse 

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.css / based.css file and paste the code in the bottom of the file.

span.svg-wrapper {
    width: 35px !important;  
}
@media(min-width:750px){
.footer-block--newsletter.scroll-trigger.animate--slide-in {
    width: 37.3%;
    margin: auto;
    display: flex !important;
    justify-content: flex-start !important;
    margin-top: 0 !important;
    
}
}
@media(min-width:1024px){
.footer-block--newsletter.scroll-trigger.animate--slide-in {
    padding-left: 5px !important;
}
}
@media(max-width:1023px){
.footer-block--newsletter.scroll-trigger.animate--slide-in {
    padding-left: 0px !important;
}
}

Result:

websensepro_0-1735825564936.png

 

If my reply is helpful, kindly click like and mark it as an accepted solution.

If you are happy with my help, you can help me buy a COFFEE

Thanks!

Need a Shopify developer? Hire us at WebSensePro For Shopify Design Changes/Coding
For Free Tutorials Subscribe to our youtube
Get More Sales Using Big Bulk Discount APP
Create Your Shopify Store For Just 1$/Month
Get More Sales Using Big Bulk Discount APP
EdensBakehouse
Excursionist
19 0 9

Thank you for helping me with step 1.

Is there also a possibility to make the icons bigger? (step 2)

topnewyork
Astronaut
921 128 160

Hello, @EdensBakehouse 

1) Go to Online Store
2) Edit Code
3) Find theme.css/base.css file
4) Add the following code in the bottom

@media (min-width: 769px){
.footer-block--newsletter.scroll-trigger.animate--slide-in {
    margin: auto;
    display: flex;
    justify-content: flex-start;
    margin-top: 0 !important;
    padding-left: 35rem !important;
}
}
@media (max-width: 768px) {
.footer-block--newsletter.scroll-trigger.animate--slide-in{
    padding-left: 0px !important;
}
}

 Thanks! 

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month

pawankumar
Shopify Partner
644 95 119

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

<style>
@media(min-width: 769px) {
    .footer-block--newsletter.scroll-trigger.animate--slide-in {
    width: calc(100% / 3);
    margin: auto;
    justify-content: flex-start;
    .list-social__item:first-of-type a {
    padding-left: 0px;
}
}
}
</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