How can I set a background image for my store's footer section?

Solved

How can I set a background image for my store's footer section?

technase
Shopify Partner
158 1 31

Hello,
I need assistance with setting a background image for the footer section of my store. I am using the Impulse theme.
store url: https://testingstoresandthemes.myshopify.com/
password: test

technase
Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
7609 1833 2245

This is an accepted solution.

Hi @technase ,

To do this you need this one code. You need to change the URL where your Image is. 

  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:
  4. And Save.
footer.site-footer {
    background-image: url('path/to/your/image.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

I hope it help. 

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 5 (5)

Made4uo-Ribe
Shopify Partner
7609 1833 2245

This is an accepted solution.

Hi @technase ,

To do this you need this one code. You need to change the URL where your Image is. 

  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:
  4. And Save.
footer.site-footer {
    background-image: url('path/to/your/image.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

I hope it help. 

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.
technase
Shopify Partner
158 1 31

Thank you - it worked. 

technase
jennedwards23
Visitor
1 0 0

I'm trying to apply this to the Dawn Theme and it's not working. Wondering if there is an update to this or something I'm missing. I'm following the directions. Applying it to the base.css. thank you Jenn

Transcy
Shopify Partner
285 19 86

Hello @technase ,

 

You can try to follow these steps:

Go to Online Store -> Themes -> Actions -> Edit code

Go to Assets folder -> base.css file -> add this following code at the bottom:

.footer-section {
  background-image: url('path/to/your/image.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

Save and preview 

 

Hope this can help.

Transcy

Transcy - The #1 Translation and Currency Converter
- Was my answer helpful? Please hit Like or Mark it as solution!
- Get in touch with us: App Store | Blog

Asafsky
Visitor
2 0 2

Is there a way to customize opacity of the footer background after installing it?