Viewing 2 replies - 1 through 2 (of 2 total)
  • Please post the url to your site.

    Not sure why you would need a URL to solve this issue. @datadoc74, use the body classes included with WooCommerce to help target specific pages.

    body.single-product {
    background: url('images/path-to-image.jpg');
    }

    If you want to target a specific area of the page, you will have to use the specific div (the below example would add a background image to the “add to cart” area beside the image).

    .single-product .summary {
    background: url('images/path-to-image.jpg');
    }

    Hope that helps!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘adding custom background to single product page’ is closed to new replies.