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
219 2 53

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
10038 2387 3014

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 are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 6 (6)

Made4uo-Ribe
Shopify Partner
10038 2387 3014

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 are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
technase
Shopify Partner
219 2 53

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

kingkamel
Visitor
1 0 0

How to do i link/path the photo from content files?

Transcy
Shopify Partner
285 19 87

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
Tourist
13 0 3

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