Best photo gallery style for DW

I'm building my own website to show off my artwork and need help constructing a simple set of galleries.
What I need is a gallery that I can easily add images to or remove images from in DW without having to rebuild the whole page(s)
So far I have a home page with links to an Illustration, Fine Art and Photography pages which each have links to respective galleries (some having separate links to general and mature content).  I have built these galleries with the "create web photo album" command in DW using Fireworks and then applying a template (of my own making) to these pages.  The result has been very good.
However, what I'd like to know is once these galleries have been constructed are they set in stone? Meaning, let's say I build a photo album, apply the template, make other style changes in DW and then I realize I forgot one or two other images.  Is the Fireworks created photo album flexible enough to be able to add more photos as I go, even, say weeks later?  Do I have to start all over (delete the files in DW etc) with a whole new photo album?
Thanks,
R Mohr

...I find I'm trying to fit a gallery format into what I designed.  Should I, instead, pick a gallery format/look that works for me then design my website around that?
This is quite a broad question in my view.  I don't know JAlbum at all but it looks contemporary and user friendly with the capablity to widgetise it.  I wouldn't like it so much because I would find it difficult to fully customise it probably, because of the limits of my own knowledge.  However, if you are good at all that stuff then have a go but I get the impression you would start with JAlbum and then work your site around that.
I think that your original question was about how to add images to a gallery that was built by another application and you would need to look at JAlbum to see how that is managed.  I remember a few years ago that I would build a Photoshop web album and if I needed to add a couple of images I would rebuild the whole album.
I know a little more HTML/CSS these days so wouldn't find it daunting to make changes but I also know enought to implement any of the Lightbox clones.  I think Lightbox has alwaus suited me.  I reckon it's sylish without being gimicky and despite the fact that it is all over the web, it still has a good reputation.  The good thing about it is that if you build your own gallery, prepare your own thumbs and viewing images, add the script and get it running yourself, you know exactly where everything is.  That way, adding or removing images here and there isn't a problem.
I guess the other thing is that if  you are adding whole new galleries quite often and working with heaps of photographs, then an automated option might be preferable.
Martin

Similar Messages

  • Transferring Windows Photoshop CS2 web photo gallery styles in Mac Photoshop CS4 web photo gallery

    Hi,
    My name is JatinderPal Singh. I'm migrating from Vista to MAC and before I purchase the upgrade from Photoshop CS2 and Photoshop CS4 I need to know that can I continue to use my existing web photo gallery styles in CS4 after installing the add-on feature. Because I know web photo gallery is not default in CS4. We need to manually add this feature. I hear from other photographers that  this is a problem. Can you please confirm that this is possible

    Check this out:
    http://blogs.adobe.com/jnack/2009/04/a_few_useful_reminders.html
    Remember to install the Picture Package too.
    Additionally, make sure you have updated to Photoshop 11.0.1 and applie the update to AOM, the Adobe Output Module.

  • Generate Photo Gallery XML for Spry with Adobe Bridge

    Wanted to post a note to what I've discovered/worked out -- a
    way to
    generate a very useful photos.xml from Adobe Bridge. If you
    use Bridge,
    it's very easy to add titles, keywords, ratings -- all kinds
    of metadata
    that one might use in a photo gallery. Here it is in case
    anyone wants
    to use.
    The script is based on one I found at the Adobe User to User
    Bridge
    Scripting Forum for exporting a CSV file.
    Note 1: this particular script doesn't take into account
    CDATA that
    might exist in your metadata, like ampersands in your title.
    I've just
    avoided using those, but you could also have the script write
    out a
    CDATA node for that info instead.
    Note 2: this script does not write out a thumbpath,
    thumbwidth or
    thumbheight attribute. But usually the thumbpath is the exact
    same as
    the regular "path" attribute, and the thumbwidth and
    thumbheight are
    just a ratio of the regular "width" and "height" attributes.
    I added a
    bit of JS to the gallery.js file to calculate those before
    growing the
    thumbnail on rollover.
    Personally I'm using keywords as categories and titles as
    captions and
    sorting by rating (stars in Bridge), so here's the .jsx file
    I created.
    The script should be saved to the folder "StartupScripts" in
    Program
    Files/Common Files/Adobe.
    Hope this is useful for others too!
    #target bridge
    if (BridgeTalk.appName == "bridge" ) {
    // create menu
    var menu = MenuElement.create( "command", "Export XML File",
    "at the end
    of Tools");
    menu.onSelect = function(m) {
    try {
    // ask for the name of the output file
    var f = File.saveDialog("Export XML file to:", "XML
    File:*.XML");
    if ( !f ) { return; }
    // open filestream and write first line
    f.open("w");
    f.writeln("\<photos\>\r\r");
    // get a list of all the visible thumbnails in Bridge
    var items = app.document.visibleThumbnails;
    for (var i = 0; i < items.length; ++i) { var item = items
    f.writeln("\<photo path = \"" + item.name + "\"" + "\r" +
    "width = " +
    "\""+ getWidth(item) + "\"" + "\r" + "height = " + "\""+
    getHeight(item)
    + "\"" + "\r" + "rating = " + "\""+ getRating(item) + "\"" +
    "\r" +
    "categories = " + "\""+ listKeywords(item) + "\"" + "\r" +
    "caption = "
    + "\""+ getTitle(item) + "\"" + " \>" + "\r" +
    "\<\/photo\>\r\r" ); }
    f.writeln("\<\/photos\>");
    f.close();
    } catch(e) {
    function getTitle(tn) {
    md = tn.metadata;
    md.namespace = "
    http://purl.org/dc/elements/1.1/";
    var varTitle = md.title;
    return varTitle;
    function getWidth(tn) {
    md = tn.metadata;
    md.namespace = "
    http://ns.adobe.com/tiff/1.0/"
    var varWidth = md.ImageWidth;
    return varWidth;
    function getHeight(tn) {
    md = tn.metadata;
    md.namespace = "
    http://ns.adobe.com/tiff/1.0/"
    var varHeight = md.ImageLength;
    return varHeight;
    function getRating(tn) {
    md = tn.metadata;
    md.namespace = "
    http://ns.adobe.com/xap/1.0/"
    var varRating = md.Rating;
    return varRating;
    function listKeywords(tn) {
    md = tn.metadata;
    md.namespace = "
    http://ns.adobe.com/photoshop/1.0/";
    var Keywords = md.Keywords;
    var varKeywords = "" ;
    for ( var i = 0; i < Keywords.length; ++i ) { varKeywords
    = varKeywords
    + Keywords + ","; }
    return varKeywords;

    I updated the script so it exports an XML file from Bridge
    with full
    compatibility with the Spry Demo Photo Gallery, to use as
    photos.xml.
    It's at the same address:
    http://www.imagicdigital.com/spry/bridge_export_xml.zip
    To Use:
    The script goes in the folder "StartupScripts" in Program
    Files/Common
    Files/Adobe.
    Launch Bridge and browse to a folder that contains the files
    you want in
    your gallery -- the "source" folder, as it were.
    Choose the menu command "Tools > Export XML for Spry
    Gallery".
    Type a name for your XML file in the Save dialog box, choose
    a location,
    and hit "Save".
    In the dialog box that pops up, enter a max length/width for
    your
    thumbnails, in pixels. Some common sizes are "75" , "100" or
    "125".
    Hit "OK". You should see an alert pop up telling you "XML
    file
    successfully created!"

  • Creating a photo gallery / portfolio for a client to manage (CMS & Business Catalyst)

    I have been asked to create a website for a client, the client is a photographer and wants a site to promote her nursery school photography business. She would like to be able to manage the site herself using the BC dashboard, uploading images as and when needed. I use Muse to create sites and have informed the client that for any kind of CMS they need to host with Business Catalyst.
    My issue is creating a relatively limitless photo gallery / portfolio. As I understand it a client can upload and change images on their site using the BC dashboard, providing there is a slot available to do so. I believe Business Catalyst has a photo gallery module on their Webmarketing package, would this be what I am looking for? Failing that are there any good workarounds available for my client using Muse alone?
    In the future the client is looking for secure zones within the site and also an online ordering system, but right now it's a fairly simple promotional site with a good gallery of pics.
    I posted a similar question last week, someone very kindly suggested Smugmug, I looked into a separate solution (including Smugmug) but it's not suitable in this case and I would rather stick to Muse, BC and Adobe.

    Hi
    Yes, you can use Photo Gallery module, where your client would be able to upload new images from site backend and update the module. Also with photo gallery there are other parameters which they can use for image display.
    https://www.youtube.com/watch?v=x-MuLyhxS5o
    https://www.youtube.com/watch?v=Hg8pB1cLvnk
    For future preferences , your client can setup secure zones, online shop etc from site admin.
    Let me know if you have any questions.
    Thanks,
    Sanjit

  • Photo Gallery Software for Mac OS X Server

    I'm porting my Linux server infrastructure over to Mac OS X Server. I've successfully moved over my DNS, Mail and most of my web sites to Mac without a problem. However, the last website is causing me a bit of pain. In Linux I was using Gallery 2 (http://gallery.menalto.com/), but I'm not sure how to get this to work on Mac OS X. In particular there are a bunch of dependencies that I'm not sure exist in Mac (ffmpeg, etc.)
    * Is there an alternative photo gallery software that people use which may install/work better on the Mac? We have wiki and blog services in the Web Server Admin pane, but I don't see a photo gallery service.
    * Has anybody had success in using gallery2 over to the Mac? What dependencies were needed and how did you find them?
    Thanks,
    Scott

    Hi
    For me it has to be RumpusFTP Server:
    http://www.maxum.com/Rumpus/
    It has a secure web interface - no need to open ports 20, 21. No need for dedicated FTP client software for uploading and downloading. Supports the most commonly used browsers. Multi-platform support and can be installed on a standard client OS.
    Tony

  • Photo Gallery: Looking For Suggestions

    Hi, all.
    I've been using JustSo PhotoAlbum quite happily for a few
    years and it
    continues to serve my needs well.
    One client, however, is requesting a gallery solution that
    would use
    JSPA-style popups, but with 'forward'- and 'back'-style
    navigational
    controls incorporated within the popup window.
    Has anyone encountered a commercial utility that can do this?
    Maybe a
    combination of tools? I'm not a programmer and I don't want
    to get my
    hands too dirty on this one.
    Looking forward to your hearing your ideas.
    KZ

    "Ken Zenachon" <[email protected]> wrote in message
    news:[email protected]..
    > Hi, all.
    >
    > I've been using JustSo PhotoAlbum quite happily for a
    few years and it
    > continues to serve my needs well.
    >
    > One client, however, is requesting a gallery solution
    that would use
    > JSPA-style popups, but with 'forward'- and 'back'-style
    navigational
    > controls incorporated within the popup window.
    >
    > Has anyone encountered a commercial utility that can do
    this? Maybe a
    > combination of tools? I'm not a programmer and I don't
    want to get my
    > hands too dirty on this one.
    Lightbox might be suitable for your client:
    http://www.huddletogether.com/projects/lightbox/
    If you want a more automated solution, with a different "look
    and feel", you
    might consider Slide Show Magic:
    http://www.projectseven.com/products/galleries/ssm/ssm_03.htm
    Al Sparber - PVII
    http://www.projectseven.com
    Extending Dreamweaver - Nav Systems | Galleries | Widgets
    Authors: "42nd Street: Mastering the Art of CSS Design"

  • My best photo-video app for iPhone6, anything better ?

    Hi guys,
    these are the best apps I found (both ipad and iphone), do you know anything better and with some more "professional like" features (e.g.: custom k° white balance) ?
    Photo: PureShot (by Michael Hardaker)
    Why: Max quality jpeg (lowest compression possible), Tiff format, histogram, highlight clipping indicator, shadow clipping indicator, manual ISO, manual shutter speed, ISO priority, Shutter priority and many other features.
    Videos: Videon
    Why: Custom picture size, frame rate, aspect ratio, video editor with very valid color correction and color grading tools.
    Thanks

    If you copied photos to your iPod using the full resolution option you don't need a 3rd party program. Enable disk use, open your iPod in "my computer", open the photos folder then open the "full resolution" folder and drag the photos out of that folder to your desktop. For enabling disk use look here.
    Disk Use.
    As for other programs, I don't know if this is the "best", but it's one I've used successfully before.
    Copy photos from iPod to a Mac.

  • Best Photo Recovery App for Ipod video?

    Hi.... what should be the best app recovery tool out there that is compatible with iPod video?

    If you copied photos to your iPod using the full resolution option you don't need a 3rd party program. Enable disk use, open your iPod in "my computer", open the photos folder then open the "full resolution" folder and drag the photos out of that folder to your desktop. For enabling disk use look here.
    Disk Use.
    As for other programs, I don't know if this is the "best", but it's one I've used successfully before.
    Copy photos from iPod to a Mac.

  • What is the best photo editing software for newbies

    Would you recommend Photoshop elements for a newbie to Apple platform.
    Have editing background but not very proficient in Photoshop.

    iPhoto, which actually comes free with your Mac, does some basic, yet powerful things in photo editing.
    I recommend Aperture because it does two things very well. First, it's like iPhoto in that it organizes photos, which is a separate App when you enter the Adobe ecosystem.
    The second thing is that Aperture is extremely powerful in editing photos. But more than that you can purchase even more powerful plug-ins that have Photoshop counterparts. In other words, you can grow with Aperture from powerful photo editing/organizing tool. And as you need to get into other things like HDR editing, you can buy plug ins from photo software developers like Nik Software.
    I'm a huge fan of Aperture, and I've done some cool things with it. There are huge philosophical debates between how Aperture deals with editing imaging and how the Photoshop world does, but you're a "newbie", so Aperture may be your best start in life. It's very Mac-centric. Apple supports it. And frankly, the support community here is probably one of the most vibrant on all of Apple (other than the film editing ones).

  • Best photo editing software for HDR and Blk and white? Thx!

    This is my first mac and new to photo editing.. I was wondering what Software I should get for photo editing? I found the HDR function on my iPhone and love the pictures that it takes... I wanted to get more out of my nikons and do some HDR editing and black and whites..In the past I would just print no editing.. I am also not a computer person so please excuse my lack of terminology for this topic. I just found out that i need plug ins for the different programs!Thanks for your time and feedback

    Here's the catch:
    I am also not a computer person
    But Photo Editing is a very "computery" thing. There are lots and lots of options. Some are very easy to use but not very good. Some require learning and are very good indeed. I suggest you explore Photoshop Elements which you can read about here
    http://www.adobe.com/products/photoshop-elements.html
    There is a learning curve but there are lots of tutorials and support material at the Adobe Site.
    You can also download a free trial there.
    Regards
    TD

  • Best photo editing software for iPad?

    Is Adobe Photoshop the best?
    I have a picture where the subject is holding a wine glass which covers part of the chin. I'd like to remove the wine glass and touch up the chin so it doesn't show that the picture has been edited.
    All suggestions welcomed.
    TIA.

    Sorry...
    Meant Adobe Photoshp Touch.
    Anyone?

  • What is the best photo editing app for ipad?

    I would appreciate any coaching regarding choosing an app that I can edit photos with directly on iPad

    The iPad forum would be a great place to ask iPad questions - https://discussions.apple.com/community/ipad/using_ipad
    LN

  • Who has the best video gallery template for purchase?

    Specifically I would prefer a template that is focused on video. 

    If you are not fussy, there are literally thousands of straight up HTML templates you could easily buy if you wanted to focus heavily on video, you could then so minor changes to the template to fit with BC, like saving of form data etc. It just depends besides video what other functions you require.

  • Best photo editing for mac

    Is there a "best" photo editing app for mac that may do a little more than iphoto? I'm interested in helping my photos to look a little better as far as lighting, contrast, etc. but not fake stuff like photoshop effects. I'm a newbie at this. Maybe I should just stick with iphoto?
    Thanks for any advice.
    Cassandra

    Try these:
    Pixelmator
    Gimp
    Photoshop Elements

  • Flash Contest - Photo Gallery

    Hello, I hope this forum admins are OK with this post, else
    please re/move it.
    We are having a Flash contest at FFILES.com , users can
    submit a flash photo gallery, the user with best gallery system
    will receive $250.00.
    There are more details here:
    www.ffiles.com/flash/photo_gallery_contest
    Please let me know if you have questions.
    - Adrian

    no no....i designed the photo gallery especially for this
    contest....just asking if i could sell it on flashden even before
    the contest's deadline? and do you give me the permission to send
    it to them with the photos you provided? 10x

Maybe you are looking for

  • Can i move iWeb site control from one computer to another?

    We hired someone to create a website for our company. He created it using iWeb on his computer and now is no longer with the company. How can I move the control of this website to the iWeb application on my computer so that I can manage the site?

  • Use mouse movement to create parallax

    How would I create a little parallax between layers using the mouse movement rather than the scroll bar? Just trying to create the sense that there is some depth on the page,not massive movement. Sorry don't have an example to show what I mean.

  • [SOLVED] Thunar sees both '.doc' and '.txt' as plain text files...

    Hello, I'm using Thunar as my file manager. However, it sees both '.doc' and '.txt' files as "plain text files". This means that I can't make the .doc files open with OpenOffice and the .txt files open with a plaintext editor, because whenever I chan

  • HTML 1:1 PDF

    Webpage 1:1 PDF Wie kann man eine HTML-Seite 1:1 in ein PDF-Dokument umwandeln. Idealerweise sollte dies auch für ASP, PHP usw. funktionieren,sowie für Blogeinträge (Blogger, Wordpress, -). Das PDF sollte searchable sein, die Eigenschaften wie Datum,

  • "Automating" applications that really weren't designed to be automated?

    Hello folks. I recently purchased the American Heritage fourth edition dictionary and thesaurus, which comes with a CD-Rom with both products. It's a great dictionary and the one I want to use but it's an older application (I think it's called eRefer