eh hi there, im new on the boards and i see you got a good help section, dunno if this is quite the right place to post this but i really really need help!

at college we are creating an online portfolio basically, and mine is yet to be desinged right and filled so bare with its rather crap layout and everything i havent even started it just its a temp look for now once i get my screenshots hosted! X_X hold on for that for now bare with my description.

ok, so i have my main pages, Home, Info, Characters, Forums, Links, Guestbook and such, i have made one character page as a trial and error sort of thing and now i want to put up a photoshop gallery. i have PS CS and getting CS2 eventually, dunno how long though now, i got my list in dreamweaver of all my files and such at the side (bare in mind, im no where near Great with dreamweaver i understand and use it well in some places, fail misserably in others)ahem, any way, so i got all my pages and images in my list and i sett he images i want in the PSgallery in to their own seperate folder, and set the destination to be my sites folder. now, PS does its lil thing, preview and such in browser and its all good.
so back tot he dreamweaver side, i go on in, open my characters page up to jsut put a test link in 'to gallery' written at the bottom, highlight it and select, then link it to the gallery index page. save and put the entire site, which is alot! >.< and so i visit it, to either find its replaced my original index file with this one, or it wont even show up 'to gallery' there i placed it, and wont even load the gallery when i try and type in the adress bar so uhm. help?

what am i doing wrong, what do i need to do to get this gallery in, linked and working right? because ive tired the methods i know and none are working, you guys n gals know more so you could probably spot where im slipping up or what i need to do? help!! :(

Dani AI

Generated

Nice recovery — ’s suggestion got the gallery files placed correctly, so the next job is fitting your new Photoshop layout into Dreamweaver without breaking the rest of the site. Two practical approaches work well: a quick slice-and-stitch if time is tight, or a cleaner HTML/CSS rebuild for maintainability. The rebuild is recommended for a portfolio you’ll update often.

If using slices: export only the pieces that must be images (logos, complex decorations) with Photoshop’s Slice/Save for Web. Put the exported asset folder inside your Dreamweaver local site folder so paths stay relative. Open the exported HTML in Dreamweaver to salvage assets, then move inline styles into a stylesheet and remove layout-heavy spacer images where possible. Keep a backup of any live index file before uploading.

If rebuilding with HTML/CSS: export just the assets you need (icons, tileable backgrounds). Build a semantic page structure and style it with CSS instead of slicing everything. A minimal skeleton to start from:

<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <title>Portfolio</title>
  <link rel="stylesheet" href="css/site.css">
</head>
<body>
  <div id="site-wrap">
    <header>…</header>
    <nav>…</nav>
    <main>…</main>
    <footer>…</footer>
  </div>
</body>
</html>

Use Dreamweaver’s CSS tools to assign classes and test layouts across browsers. Create a Dreamweaver template (.dwt) for the shared header/nav so pages like Home, Info, Characters, Forums, Links and Guestbook stay in sync — edit the template once and publish changes everywhere.

Deployment and troubleshooting: confirm Dreamweaver’s Local/Remote site mapping before uploading, upload only changed files or use Synchronize, and keep sensible filenames (lowercase, no spaces). If images don’t appear, inspect the page source to verify relative paths and check server case sensitivity. For this workflow keeps the gallery isolated while replacing the visible layout across all pages safely.

Recommended Answers

All 2 Replies

Are you using the Automate --> Web Phot Gallery in PS. I assume you are since you said you choose your destination. PS will automatically make an index.htm when you run the web photo gallery tool so you do not want to set your destination in your root directory of your website (or you run into th error you are of overwrtinign your existing index.htm. Instead you should make a folder called gallery off of your root directory and set that as the destination, then within that gallery folder, PS will put in an images folder with the images and thumbnails and an index.htm. Now when you want to set the link to go to that folder, you can just point it to the gallery folder and it should work fine.

For the second part you are saying it is not even showing up the to gallery link you created. If you have it on your page in dreamweaver, and it is not showing up when you try to test it, clear your cache in IE or whatever you use. That might solve that issue.

Don't know if any of this will help, but good luck.

thanks so much! i tried what you said and it worked a treat!! now all i gotta do is try and figure out how to stick my new layout i made in to dreamweaver x_x;

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.