Another way to do this would be manually, I think this might be a good way for you as it will help sink in some basic principals. If you find there is a link to the css like;
<link href="css/style.css" rel="stylesheet" type="text/css">
just type the sites url into the browser and add the href from our css link
http://www.theexamplesite.com/css/style.css
This will take you directly to the css page copy the file to your hard drive in a directory that emmulates the directory structure of the website you are examining. Visually search the css file for any inserted images and you will be able to grab these the same way.
For all the the regular html images you can just right click to save them.
The relative path images work a little a differently than absolute paths. They both began from the source of the file that calls them, but they can be structured differently. For example, if you find a path that looks like;
background-image: url(../images/bg.gif);
than you will need to go back one directory and look in the images folder.
http://www.theexamplesite.com/images/bg.gif
If instead you find;
background-image: url(images/bg.gif);
Than you will find that image at
http://www.theexamplesite.com/css/images/bg.gif
Once you manually recreate the site locally on your hard drive, you will already have an intimate understanding of it's heiarchy, this should help you understand what is going on.
Tools like Rincewind suggested are very useful, but I think while you are learning they might limit your exposure to a websites structure.
I hope I haven't made things more confusing. Please feel free to ask any other questions that occur to you.
Cheers,
__________________
[size=2] Faze1.net - Webhosting - Focusing on quality service
|