I added the images into the folder called "images" and CSS to folder called "css", now I want to use the images in "images" folder. How do I do this? When I used this, they didn't show up:
background: url('/images/bg.jpg');
I also tried these:
background: url('../images/bg.jpg');
background: url('../../images/bg.jpg');
What is the path I should be using to access my images?