Add Background Imagem in "Product Page" (Dawn Theme"

Danielpochapski
Explorer
58 0 11

Hello,

I have a custom page for "pet products". I would like to place a background image on the product description page, as shown in the image. I am attaching the image that I would like to add as a background.

Product Description.jpg

Background Image.jpg

 

Can someone help me?

 

Thanks in advance"

 

Reply 1 (1)
Valya_
Shopify Partner
3 0 0

Hey there, upload your image to the Assets folder in your theme, and then insert it into your product's Liquid section like this. It should work. If it doesn't (since this depends on your theme's code), let me know, and I can help you further.

 

{%- style -%}
body {
background-image: url({{ 'your_image.jpg' | asset_img_url: 'original' }});
background-repeat: no-repeat;
background-size: cover;
}
{%- endstyle -%}

Untitled.jpg