thanks but that still does not work
the following ccs works by using a web based image
code
.toast-item-image-notice {
background:url("http://cdn3.iconfinder.com/data/icons/ellegant/64x64/9.png");
}
/code
but replacing the image with the following does not work. I have tried with quotes / without also.
code
background:url(../files/views/assets/image/camera30.png);
or
background:url(files/views/assets/image/camera30.png);
/code
I have checked that the file name exists in the source tab under the file structure and it is there. I have used the following code else where and this works so i am sure the file exists.
code
Appery('mobilebutton_85').css("background-image", 'url(' + Appery.getImagePath('camera30') + ".png" + ')');
/code