Exit a level and enter the img folder
PageList1 ul {
border-top: 2px solid #ccc;
border-bottom: 2px solid #ccc;
background-image: url("../img/remove-icon-small.png") !important;
}
same level of the css file and enters the img folder
PageList1 ul {
border-top: 2px solid #ccc;
border-bottom: 2px solid #ccc;
background-image: url("/img/remove-icon-small.png") !important;
}
Same level of css without going into any folder
PageList1 ul {
border-top: 2px solid #ccc;
border-bottom: 2px solid #ccc;
background-image: url("remove-icon-small.png") !important;
}
You should consider the url of the image according to the folder structure
if the image is in the same root as the css file then disregard put ../
, so on.