I'm trying to use the background link css property selector within WordPress for the image appear on it's page http://launique.co.uk/services-float/
First I used the default image link and entered the link to the default image, which I had uploaded to the media library:
background: url(http://launique.co.uk/wp-content/uploads/2016/07/fold.gif) no-repeat 0 0;
That didn't work.
Then after some research, I created a separate "images" folder within the child themes folder in my cpanel.
background: url(images/fold.gif) no-repeat 0 0;
But still to no avail...
This is the whole like of code:
.page-services h1::after {
content: '';
display: block;
height: 40px;
width: 40px;
background: url(images/fold.gif) no-repeat 0 0;
}