Hi, I use the save for web feature to save sliced .psds for my company's website. It's not a straightforward/easy method but here's what I do:
Slice up my image in Photoshop
Save for web
-Make sure that when you save, you say to save as .html and images
-Make sure that you have it create DIV tags
-Then save it in a folder in your web directory
Open the page in Dreamweaver and select all and copy
Paste it into your desired page
-What this is doing for you is creating the complex layout table that will house all of your images. Depending on how far or short in the directory structure is, all of your image links will be broken. To solve this, move all of your images where you want them and then get them to link.
Here is the easy way to get them to link
all of your images in your tables will be referencing /images/xxx.jpg. click on one of these images and find the correct source for it by dragging the crosshairs to the image in your site panel. It should show up in the table. So now you have in your code a correct link. If your layout is small, then you can do this for all of your slices. If not, do this:
Find and Replace. What you need to find is the directory structure that all of your images are referencing, most likely /images , and then replace that in the code with the correct directory structure, maybe ../images , or flowers/images . I personally do not like coding myself so what I do is this:
in code view, find the directory structure of a wrongly referenced image(ie, if you have /flowers/images/rhododendron.jpg and /flowers/images/beargrass.jpg, only copy ' /flowers/images/ ' and not the filename)
copy the code before that
put that in the "find" box in the find and replace box
in code view , find the directory structure of a correctly referenced image(ie, if you have /flowers/images/nwflowers/rhododendron.jpg and /flowers/images/nwflowers/beargrass.jpg, only copy '/flowers/images/nwflowers/ ' and not the filename)
copy the code before that
put that in the replace box in find and replace
this should fix your problem. hope this helped. i created the top banner of this website using this technique:
www.vf-law.com
please ask anymore questions