Hi all
I’m looking for some CSS that will insert a background image behind the products in my WooCommerce shop page. Can anyone help?
Cheers
N
Hey neilpreston26,
Does your shop have a URL and would you be able to link to the image you want as a background?
Best regards,
Rikard
Hi Rikard, thanks for getting back to me. I made a mistake when I said it was the shop page, it’s actually the page which displays the product designer when one of the three products is selected.
The background image can be found at: https://www.sayitwithstyle.co.uk/wp-content/uploads/2018/03/1920-wide-logo-with-30-opacity.png
The front end address showing the product designer page is: https://www.sayitwithstyle.co.uk/product/five-by-five/
every container you like : f.e.:
.postid-2064 #main .container_wrap {
background-image: url(https://www.sayitwithstyle.co.uk/wp-content/uploads/2018/03/1920-wide-logo-with-30-opacity.png);
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
}
but on that case i would delete the background for:
There must be an inline-style on
.fpd-container .fpd-main-wrapper {
…………
}
Thanks Guenni007, that’s really helpful. I’ll implement it this evening. Much appreciated – np26
Hi neilpreston26,
Great, let us know how you get on with it. Thanks @guenni007 for helping out :-)
Best regards,
Rikard
It worked perfectly, Guenni007. Thank you for the help. Consider this post solved.