change footer colour

Hi guys,

could anyone please help me with getting my footer colour into black?

I’ve tried it with css but can’t seem to succeed.

My shop is tranquilo.store

1 Like

Hi @Tranquilo ,

  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.
footer.footer-main.dark.flex-full.color-scheme--dark.site-footer.footer-alignment--left {
    background: black !important;
}

Thanks!

Go to your online store → edit code → theme.min.css file and paste this code in the end of file

.footer-main--inner.wrapper-spacing--h {
    background: #000 !important;
}
.footer-bottom--inner.wrapper-spacing--h {
    background: #000 !important;
}

Hi @Tranquilo

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:
.footer-wrapper * {
    background: black !important;
}

button#FooterSubscribe {
    border: 1px solid white;
}

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

1 Like