Different Background for Different Product page

Solved
torgar
Tourist
4 0 0

As of now, I have two products, and I want each to have each own unique background. How do I proceed?

Page: notedot.no

Pass: lit

 

help2.PNG1

Help1.PNG2

 

 

Accepted Solution (1)
PaulNewton
Shopify Partner
5931 537 1241

This is an accepted solution.

Use alternate templates and custom css settings

https://help.shopify.com/en/manual/online-store/themes/os20/theme-structure/templates#create-a-new-t...

 

https://help.shopify.com/en/manual/online-store/themes/theme-structure/extend/add-css

 

Then in each products specific template find out the CSS selectors for either the entire pages background (the <body> tag) or the content area for the product.

body {
 background-image: url("https://interactive-examples.mdn.mozilla.net/media/examples/lizard.png");
}

or

 

#MainContent {
 background-image: url("https://interactive-examples.mdn.mozilla.net/media/examples/lizard.png");
}

 

https://developer.mozilla.org/en-US/docs/Web/CSS/background-image 

 

Save time & money ,Ask Questions The Smart Way


Confused? Busy? Get the solution you need paull.newton+shopifyforum@gmail.com


Problem Solved? ✔Accept and Like solutions to help future merchants

Answers powered by coffee Buy Paul a Coffee for more answers or donate to eff.org


View solution in original post

Reply 1 (1)
PaulNewton
Shopify Partner
5931 537 1241

This is an accepted solution.

Use alternate templates and custom css settings

https://help.shopify.com/en/manual/online-store/themes/os20/theme-structure/templates#create-a-new-t...

 

https://help.shopify.com/en/manual/online-store/themes/theme-structure/extend/add-css

 

Then in each products specific template find out the CSS selectors for either the entire pages background (the <body> tag) or the content area for the product.

body {
 background-image: url("https://interactive-examples.mdn.mozilla.net/media/examples/lizard.png");
}

or

 

#MainContent {
 background-image: url("https://interactive-examples.mdn.mozilla.net/media/examples/lizard.png");
}

 

https://developer.mozilla.org/en-US/docs/Web/CSS/background-image 

 

Save time & money ,Ask Questions The Smart Way


Confused? Busy? Get the solution you need paull.newton+shopifyforum@gmail.com


Problem Solved? ✔Accept and Like solutions to help future merchants

Answers powered by coffee Buy Paul a Coffee for more answers or donate to eff.org