I want to make my footer like the picture attached

Solved

I want to make my footer like the picture attached

swawestore
Explorer
114 0 18

I want the bottom of my website https://swawe.store/ Look like this IN THEPICTURE ATTACHED which is currently not coming black  

Screenshot 2024-08-09 at 23.29.01.png

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
7781 1880 2304

This is an accepted solution.

Hi @swawestore 

Do you mean like this? 

Made4uoRibe_0-1723237891126.png

If it is check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

.footer_social_icons span.visually-hidden {
    display: contents;
    color: white;
}
.footer_social_icons li.list-social__item svg {
    display: none;
}
.footer__content-bottom-wrapper.page-width .footer_social_icons {
    background: black;
    color: white;
    max-width: 100%;
    padding: 0 1rem;
}
.footer__content-bottom .page-width {
    max-width: 100%;
    padding: 0;
}
footer.footer.color-scheme-1.gradient.section-sections--15945048784986__footer-padding {
    padding-bottom: 0;
}

 

And Save.

Or you only want black background,

 

.footer__content-bottom-wrapper.page-width .footer_social_icons {
    background: black;
    color: white;
    padding: 0 1rem;
    fill: white;
}
.footer__content-bottom .page-width {
    max-width: 100%;
    padding: 0;
}
footer.footer.color-scheme-1.gradient.section-sections--15945048784986__footer-padding {
    padding-bottom: 0;
}
.footer_social_icons .footer__list-social .list-social__item .icon {
    color: white;
}

 

And Save. 

Result:

Made4uoRibe_1-1723238286991.png

 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

View solution in original post

Replies 2 (2)

BSSCommerce-HDL
Shopify Partner
2079 738 930

Hi @swawestore ,

Step 1: Go to Shopify Admin -> Online Store ->Theme -> Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above </head> tag:

<style>        .list-social__item svg {
            fill: white!important;
margin-right: 50px!important;
        }
.list-social__item path {
            fill: white!important;
        }
    .footer_social_icons .social-icon-label {
        color: white!important;
margin-left: 50px!important;
    }

 footer > div.footer__content-bottom.scroll-trigger.animate--slide-in > div:nth-child(2) {
       background-color: black!important;
}

.footer__content-bottom-wrapper.page-width {
padding: 0px!important;
margin: 0!important;
max-width: 100%!important;
}

.footer_social_icons {
margin: 0!important;
}

.footer {
padding: 0!important;
}

</style>

Here is result:

BSSCommerceHDL_0-1723230311804.png

Hope this can help you, If our suggestions are useful, please let us know by giving it a like or marking it as a solution.

Thank you 😍

 

If our suggestions are useful, please let us know by giving it a like, marking it as a solution, or donating here .

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.
Product Labels & Badges:
Get more sales with striking labels, badges, and banners from our 10,000+ available templates.

BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

Made4uo-Ribe
Shopify Partner
7781 1880 2304

This is an accepted solution.

Hi @swawestore 

Do you mean like this? 

Made4uoRibe_0-1723237891126.png

If it is check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

.footer_social_icons span.visually-hidden {
    display: contents;
    color: white;
}
.footer_social_icons li.list-social__item svg {
    display: none;
}
.footer__content-bottom-wrapper.page-width .footer_social_icons {
    background: black;
    color: white;
    max-width: 100%;
    padding: 0 1rem;
}
.footer__content-bottom .page-width {
    max-width: 100%;
    padding: 0;
}
footer.footer.color-scheme-1.gradient.section-sections--15945048784986__footer-padding {
    padding-bottom: 0;
}

 

And Save.

Or you only want black background,

 

.footer__content-bottom-wrapper.page-width .footer_social_icons {
    background: black;
    color: white;
    padding: 0 1rem;
    fill: white;
}
.footer__content-bottom .page-width {
    max-width: 100%;
    padding: 0;
}
footer.footer.color-scheme-1.gradient.section-sections--15945048784986__footer-padding {
    padding-bottom: 0;
}
.footer_social_icons .footer__list-social .list-social__item .icon {
    color: white;
}

 

And Save. 

Result:

Made4uoRibe_1-1723238286991.png

 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.