I have been looking around for a way to essentially allow a user to upload images in the WordPress backend and for the images to be used on the front-end as background-image for a div, therefore allowing support for the following CSS
background: url('');
background-repeat: no-repeat;
background-size: cover;
I found a question which had an answer which I liked, but i'm not great with PHP and wouldn't know how to implement it with 'Toolset Types' so that it adds the background url to the stylesheet and overrides it when the client wants to add a new image. How to upload image file from computer and set as div background image using jQuery?
I could also put the images on the page itself, and allow users to do it that way, but I need to use the background properties so that the image covers the div. If anyone knows any styles that can do this without the background styling, that would be great.