Images referenced in CSS files
These are referenced from the locoation of the CSS file itself (not the website site root)
background-image: url('images/sidebar_link_icon.png');
/* With css file here:
/SomeFolder/SomeOtherFolder/FolderWithThisCssFile/style.css
The following file will be referenced:
/SomeFolder/SomeOtherFolder/FolderWithThisCssFile/images/sidebar_link_icon.png
*/
background-image: url('../sidebar_link_icon.png');
/* With css file here:
/SomeFolder/SomeOtherFolder/FolderWithThisCssFile/style.css
The following file will be referenced:
/SomeFolder/SomeOtherFolder/sidebar_link_icon.png
*/
