What's your biggest current challenge? Have your say in Community Polls along the right column.

How can I add a background image to the Taste theme

How can I add a background image to the Taste theme

LibertyJason
Shopify Partner
17 0 3

 I am trying to add a background image to the taste theme. I believe the code would be

 

 background-image:url("download.png");background-repeat:repeat-y,repeat-y;background-position:left top,right top;}}

 

but I'm unsure of where this would go? I didn't see a place n base.css or section-footer.css

 

what am I missing?

Replies 7 (7)

made4Uo
Shopify Partner
3856 717 1199

@LibertyJason where do you want the background?

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
LibertyJason
Shopify Partner
17 0 3

My apologies, in the footer @made4Uo 

made4Uo
Shopify Partner
3856 717 1199

Hi @LibertyJason,

 

Try this. 

Add your image. 

1. Go to Admin > Online store > Themes > Actions > Edit code

2. Go to Assets folder, then "add a new asset", "upload a file"

3. The file name must match the file name you are using in the footer. Eg. download.png

 

Add the code below. 

1. Go to Admin > Online store > Themes > Actions > Edit code
2. Go to Asset folder, and open the base.css file
3. Add the code below.

footer {
 background-image:url({{ "download.png" | asset_url}} );
background-repeat:repeat-y,repeat-y;
background-position:left top,right top;
}

 

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
LibertyJason
Shopify Partner
17 0 3

Unfortunately it didn't work @made4Uo , I've tried several iterations of the same the past few days - I'm not sure if it's theme related. 

LibertyJason
Shopify Partner
17 0 3

Unfortunately it didn't work @made4Uo , I've tried several iterations of the same the past few days - I'm not sure if it's theme related. 

made4Uo
Shopify Partner
3856 717 1199

Hi @LibertyJason,

 

It is not theme related. It could be that your image is not connecting. You can use a schema to add the image

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
disston
Visitor
1 0 0

Hi @made4Uo

 

I'm hoping to use your code for the Taste theme as well but would like to add the background image so it features on every page. 

 

Do you have a suggested code for this? 

 

And do I simply paste the code at the bottom of the page ie. line ~2964? 

 

Thanks!