I want the bottom of my website https://swawe.store/ Look like this IN THEPICTURE ATTACHED which is currently not coming black
Topic summary
Goal: Make the bottom footer area on a Shopify store (swawe.store) a full-width black strip matching the attached reference image.
Key proposals:
- Edit theme.liquid: Add a styling snippet above the tag to force a black footer strip. A screenshot shows the footer rendered as a black bar, but the exact snippet isn’t detailed in the thread extract.
- Edit theme CSS (main.css/base.css/style.css/theme.css):
- Set the footer social section to full width (max-width: 100%), remove extra padding, and apply black background with white text.
- Option to replace social icons with text: hide SVG icons and reveal the “visually hidden” text (display: contents) so labels show in white.
- Alternate option changes only the background to black, keeping icons and forcing icon/text color to white. Also remove extra bottom padding from the footer section.
Outcomes:
- Provided screenshots demonstrate the black, full-width footer bar results for both approaches.
Status:
- No confirmation from the original poster; solutions offered, resolution unconfirmed. Technical focus: CSS changes via theme.liquid or asset stylesheet in Shopify Admin.
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 ![]()
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!


