I want to make my footer like the picture attached

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

Hi @attackon ,

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

Step 2: Search file theme.liquid

Step 3: Insert this code above tag:


Here is result:

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 :heart_eyes:

Hi @attackon

Do you mean like this?

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:

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