Help! centered watermark in web gallery?

Hello!
does anyone know either
1) a web gallery template with an option to center the logo
2) Where to modify the LR defalt galleries (coding) to center the logo
I really need a centered logo. Some of my photos have stock value, and I need a watermark over the center of the image to prevent web usage.
thanks!
-Josh

I use LR2Mogrify to add a watermark on export, check the add to catalog box on the export dialog and then put the watermarked copies into the web gallery.
Here is an example:
http://www.peachpit.com/blogs/blog.aspx?uk=Export-and-add-to-catalog

Similar Messages

  • Help with Starting a Web Gallery

    I am new to Lightroom and would like to setup a web gallery.  I setup the FTP server in the Upload Settings and when I click upload, everything seems to be working fine.  I also get a "Task Completed" message in the processing bar (upper left).
    When I go to the destination,  (www.wokintime.com/gallery/) nothing is displayed.  Also, when I click "Preview in Browser" nothing displays - the url says "about:blank" and the entire page is blank.
    Am I missing something?
    Any help would be much appreciated.  Thank you!
    [email protected]
    http://www.wokintime.com

    Do you get an error message from LR when uploading?
    Have you got permission to upload to this folder on the server?
    Are you placing the gallery in a sub folder within the gallery folder on your site? This will be shown here in LR
    Have you checked your server to see if the galley files are present? Whoever supplies your web service will usually have a mechanism to do this. Log in to your service in your browser, it will be called file browser or the like.
    I note you are using wordpress for the site, you may also have a htacess file on your site that is set to prevent browsing directly within a folder that is outside of the WP instillation, you will need to change permissions on the folder to allow viewing of the gallery by direct html link if this is the case. It may be better to create your galleries in wordpress itself, many plug ins are avaible for this, I do this on my sites such as
    http://severnriverstrust.com/
    petemarshall.com
    both of which use WP for the site and files from LR to create galleries

  • Need Help/Advice with Photo Web Gallery coming from SQL Database

    This is my first attempt at a database driven website. I assume what I am trying to accomplish should be fairly easy for more experienced but I am stuck at this point.
    First, let me explain what I am trying to accomplish.
    I want to create a thumbnail photo gallery displayed in columns and rows. I want to be able to hover over or click on the thumbnail image and have a lightbox script display the image over the thumb page. I am developing locally right now with intent to upload to the hosting site upon completion.
    I am developing with ASP vbScript pages. I have an SQL database where the paths to the image thumbnails and pictures are stored in a table. On the gallery page, I have created a div tag to hold my image recordset. Within this div, I have inserted 3 absolute positioned divs to hold the pictureID, the pictureName and the image inserted as a datasource. I then inserted the information from the bindings panel of my recordset. Last, I used a horizontal looper extension from Tom Muck to get the thumbnails to display in columns and rows. Everything works up to this point just fine.
    Now, I want to be able to hover or click on a thumnail image and have it displayed in a lightbox. I downloaded and used a javascript called Lightbox 2 which contains 3 javascript files and a css stylesheet. I inserted the files into the head tag like instructed to but could not get things to work properly. Here is where I need help. Currently, I am clicking on the thumbImage binding within the image Div and creating a link holder. I am then binding the larger pictureImage to it with the a.href selected in the bind to. I am then adding the command to call the lightbox javascript. Now, when I test my page, my thumbnail images do not show up (my alt text does in its place) but the links are in place and you can click on the alt text and it will return the correct larger image, but not in the lightbox, just in a new window with no styles.
    Am I going about this correctly? Can you use lightbox scripts with data-driven galleries? Does anybody have any suggestions of what I may be doing wrong or missing? Are there better ways to go about accomplishing this?
    Any help would be appreciated as this dynamic data thing has my head spinning. Although I know a database is needed to simplify the update and maintenance of the photos while allowing them to be searchable by keywords and tags also set up in the database.
    Thanks

    As I explained, I am developing locally a the moment. I will see about getting the databased moved up to the hosting server and then provide a link for an example.
    In the mean time, can you or anyone else explain a way that you would go about displaying an image thumbnail photo gallery laid out in rows / columns, with any lighbox script that would overlay the larger image over the existing page instead of opening a new browser window?
    I don't have to use the method I tried to describe.
    In all of the lightbox examples I have looked at thus far, they give instructions on how to append that javascript to a single static image or a group of static images, not images from a datasource. That is where I am getting confused.
    Don't know if this will help or not but please see code below:
    Javascript and CSS positioned in head tag
    <!--beginning of lightbox script with css -->
    <link href="CSS/lightbox.css" rel="stylesheet" type="text/css" />
    <script src="Scripts/protype.js" type="text/javascript"></script>
    <script src="Scripts/scriptaculous.js?load=effects,builder" type="text/javascript"></script>
    <script src="Scripts/lightbox.js" type="text/javascript"></script>
    <!--end of lightbox script with css -->
    Calling for javascript in the galleryimage div when hovering over thumbnail image
        <!--beginning of gallery div -->
        <div id="gallery">
          <p>
            <!--beginning of galleryImage div -->
          </p>
          <table width="400" border="0" align="center" id="galleryNav2">
            <tr>
              <td width="100" align="center"><% If MM_offset <> 0 Then %>
                  <a href="<%=MM_moveFirst%>">First</a>
              <% End If ' end MM_offset <> 0 %></td>
              <td width="100" align="center"><% If MM_offset <> 0 Then %>
                <a href="<%=MM_movePrev%>">Previous</a>
              <% End If ' end MM_offset <> 0 %></td>
              <td width="100" align="center"><% If Not MM_atTotal Then %>
                <a href="<%=MM_moveNext%>">Next</a>
              <% End If ' end Not MM_atTotal %></td>
              <td width="100" align="center"><% If Not MM_atTotal Then %>
                <a href="<%=MM_moveLast%>">Last</a>
              <% End If ' end Not MM_atTotal %></td>
            </tr>
          </table>
          <p> </p>
          <table align="center" id="HorzLooper">
            <%
    startrw = 0
    endrw = HLooper1__index
    numberColumns = 5
    numrows = 5
    while((numrows <> 0) AND (Not rs_ssfGallery.EOF))
    startrw = endrw + 1
    endrw = endrw + numberColumns
    %>
            <tr align="center" valign="top">
              <%
    While ((startrw <= endrw) AND (Not rs_ssfGallery.EOF))
    %>
              <td><div id="galleryImage">
                <div id="galleryThumb"><a href="images/pic/<%=(rs_ssfGallery.Fields.Item("picture_url").Value)%>"rel="lightbox"><img src="images/thumb/<%=(rs_ssfGallery.Fields.Item("thumb_url").Value)%>" alt="<%=(rs_ssfGallery.Fields.Item("alt_url").Value)%>" /></a></div>
                <div id="galleryImageID"><%=(rs_ssfGallery.Fields.Item("picture_ID").Value)%></div>
                <div id="galleryImageFamily"><%=(rs_ssfGallery.Fields.Item("family").Value)%></div>
              </div></td>
              <%
    startrw = startrw + 1
    rs_ssfGallery.MoveNext()
    Wend
    %>
            </tr>
            <%
    numrows=numrows-1
    Wend
    %>
          </table>
          <p> </p>
          <table width="400" border="0" align="center" id="galleryNav">
            <tr>
              <td width="100" align="center"><% If MM_offset <> 0 Then %>
                  <a href="<%=MM_moveFirst%>">First</a>
              <% End If ' end MM_offset <> 0 %></td>
              <td width="100" align="center"><% If MM_offset <> 0 Then %>
                  <a href="<%=MM_movePrev%>">Previous</a>
              <% End If ' end MM_offset <> 0 %></td>
              <td width="100" align="center"><% If Not MM_atTotal Then %>
                  <a href="<%=MM_moveNext%>">Next</a>
              <% End If ' end Not MM_atTotal %></td>
              <td width="100" align="center"><% If Not MM_atTotal Then %>
                  <a href="<%=MM_moveLast%>">Last</a>
              <% End If ' end Not MM_atTotal %></td>
            </tr>
          </table>
    <!--end of galleryImage div -->
        </div>
        <!--end of gallery div -->
    Thanks for any help or suggestions.

  • Solution to error message not helpful  for uploading to web gallery

    Hi!
    I got an error message about not being able to do this because the server was not found. I went to "help" and was told to install iphoto '08.
    We have that ! Why would I need to install it?
    I don't want to bother dh with this as he is about ready to throw the whole computer out as it is...so please somebody help!

    We have that ! Why would I need to install it?
    Have you? You're posting in the iPhoto 5 forum.
    iPhoto Menu -> About iPhoto.
    If you do have v7 (iPhoto 08) then is your iPhoto an upgrade? And how did you upgrade?
    Regards
    TD

  • CS4 Web Gallery, Uploaded gallery does not appear

    I was wondering if anyone can help me with the Web Gallery that Bridge CS4 produces.
    I have used Bridge CS4 to create a web gallery. After Bridge has finished creating it the result is a folder called Adobe Web Gallery. Inside that folder is an index.html file and a folder called resources. If I double click on the index.html file the web gallery opens in Safari (Mac). So all is good so far, it tests OK from my hard drive.
    Then I upload it to my ISP server using Fetch, as I did when using the Photoshop CS3 web gallery automate feature, which is upload the index.html file and the resources folder with all of its content into a folder on my isp members area. I then create a link to the index.html file. When I try the link it produces a blank page in Safari called " Adobe Web Gallery", and the rest of the page is blank.
    When I upload the files with Fetch I copy the exact structure as they appeared in the folder on my hard drive. I have tried to upload the gallery directly from Bridge CS4 but Bridge does not seem able to create a connection with my ISP.
    In the meanwhile I am still using Photoshop CS3 to do my web galleries, I 'd just like to get the CS4 version operating as it looks like a better product.
    I am using a Mac Pro Quad duo 2.8 with 4 G Ram.
    regards
    David

    Try it this way:
    Re-name the folder called Adobe Web Gallery to a name which is more appropriate for its contents; then upload the complete AWG Folder, with all of its contents, to your ISP Server.
    Now create a Link (with an appropriate label) on the main index page (Home page) on your site and link that "Link" to the index.html in your new Gallery folder.

  • Web Gallery from iPhoto

    Is anyone having the problem of creating a web gallery from an Event in iPhoto but not getting a picture for that gallery and inability to scroll through images in gallery? When I click on the gallery I get all the images, I am just not getting the one image to represent each gallery. I am publishing a web gallery from an iPhoto event and getting a gray image with a lock in the right lower corner. Why am I not getting a photo from the album, one that you can scroll like I am suppose to? Please help.

    In the tab "web gallery" in the iPhoto preferences I can see the title of all three albums. In fact, I tell it to check for new photos, and for few second you can see them reappear in the organizer bar on the left, with the circling wheel like it is being synchronized, but they disappear fast, and forever gone!!. Again, I can see in the copy of iDisk in my desktop that the galleries are there, and in the .mac website, I can see them. But not in iPhoto.

  • Flash, Dreamweaver, or Fireworks for web gallery

    I'm wanting to make a nice web gallery. I do not want to use
    the "create web gallery" feature found in Photoshop or Fireworks
    because I want to be able to customize my design more than what's
    offered in those templates.
    I'm at a loss as to what Fireworks is really used for in the
    first place, but from digging around online it seems like maybe
    it'd be helpful for making a web gallery (or maybe just the initial
    stage of figuring out the design?)
    What is the best software for creating a custom gallery? I'm
    assuming Flash, but then I thought maybe I could pull it off with
    Dreamweaver?
    I like how the images zoom in and fade out in these
    templates:
    http://www.entheosweb.com/photoshop_templates/flash_photo_gallery.asp
    These all had to be made with Flash right? I don't want to
    pay for a template - again because I want to have custom design of
    my own. But I haven't a clue how to do this all, so I'm also
    wondering what I need to study up in? Flash alone? ActionScript
    3.0?
    Thanks for any tips to lead me in the right direction.

    Please refer to
    your other post for replies.

  • Is there a way to create a web gallery which generates watermarked images in Photoshop CC?

    Your Case Number:0184430495
    Adobe informed me that web gallery creation is no longer available in Bridge CC.  I was told to download Lightroom for this capability.  When I tried to do that, I was told that my operating system 10.6.8 is not compatible.  I use 10.6.8 to use third party software.  Will Adobe return this feature to Bridge?  If so, please add a watermark feature (such as the one that Dr. Russell Brown created for CS6)  Also, please include more html5 galleries or galleries that will appear on multiple kinds of devices.  Thank you.

    kihphoto, This should answer your queries. http://helpx.adobe.com/bridge/kb/pdf-presentation-web-gallery-available.html

  • Flash web gallery NEED HELP

    I have no clue how to program these flash galleries....My
    site www.al-burke.com contains a flash web gallery that I purchased
    online and I have been able to upload it to the site but its says
    movie not loaded. I have all the neccessary files in place I
    believe (gallery.xlm, main.html, main.swf) all under a folder. Can
    anyone please help me out? Thanks

    Does it work when you test it from your local drive? If it
    does, but doesn't work when you post the files to the server, you
    may not have uploaded all of the parts correctly. If it doesn't
    work when testing from the files on your harddrive either, then
    there is a linking issue - have you moved any of the files after
    the gallery was created...? (If so, the links will be broken).
    You also reference a file named "main.html" - this isn't the
    name of the file that's posted - if you created a file named that,
    then changed the name to index.html without updating the links when
    prompted, that will also break the links...
    Hope that helps...

  • Im trying to publish a web gallery to BC, my settings seem correct but I'm still getting an  error: FTP transfer failed ' unknown error'. Techs on BC, say FTP working fine. Please help!

    Hey peeps,
    Im trying to publish a web gallery to be hosted on BC. Despite having what seem the correct settings im getting an error: FTP transfer failed ' unknown message'. Have checked with techs on BC. They say FTP working fine that end.
    Any suggestions?

    Have you tried connecting to another FTP server in Lightroom?
    For example, if you get a free Flickr account, can you login to it and upload a file to it?
    If you can't upload to any server, then you have a general FTP-in-Lr problem, but if problem is only with BC then, well, it's time to start scrutinizing the BC settings..
    PS - All my FTP'ing plugins have an enhanced FTP settings test feature designed to help you debug FTP settings, so another option is to download one of them, for example:
    robcole.com - FTPAggregator
    and experiment with settings tester:
    To get here, you have to click 'View / Edit Additional Settings' (in plugin manager), then choose 'New' or 'Edit' from 'Sync Pairs' drop-down menu.
    If test is unsuccessful, enable verbose logging (top section of plugin manager), and review the log file after test, or send to me.
    If you have a problem running plugin, please contact me directly:
    robcole.com - Contact Me
    Rob

  • Flash Web Gallery HELP

    I decided to create a website to showcase some of my graphic
    design work and I have been stumped for over three weeks of how to
    insert a flash web gallery. I bought this gallery from Entheosweb
    awhile ago and have been trying to correspond with their customer
    service but to no avail. I created a basic layout in photoshop with
    a simple header and footer and a body thats at least 840 x 490
    (dimensions of the gallery). I've been using dreamweaver to upload
    the files to my web host and when I exhange the code of the gallery
    for the image (body) code it is uploaded but cannot be seen on
    http://www.al-burke.com. You
    can actually right click the gallery and press play and it will
    appear. Will this happen for all visitors to the site? Also, I am
    not sure where to put the images and the important files of the
    gallery in my root folder. Thanks for your help.

    I tried access the URL provide, however, it appears you've
    emptied your root directory.

  • Help- how do I make images ready for web gallery??

    Hi,
    I am trying to create a photo gallery of images within Bridge using the Adobe Web Gallery feature. I have the images I want to use in a folder.What steps do I need to take to get the images saved in the correct format and file size? Also, what files sizes do you recommend for a web gallery? I need to make medium to large thumbnails & large images (when clicked). Here's what I am thinking I need in terms of getting this right:
    use Adobe Photoshop/Bridge to create the gallery
    jpg for photos
    gif for solid colors
    file size under 2MB (full image), under 20-30K for (thumbnails), total size of all images under 50K (no more than 50 sec. to download)
    screen size: 984x728
    screen resolution: 72dpi
    If you could help me in any way, shape or form concerning making my images ready for a web gallery that would be most helpful. And if you can refer me to any resources on making a web gallery that'd be awesome. Thank you!
    ashmic19

    Thanks for the link Curt Y that video is really helpful. After looking through some materials I had I figured out how to optimize my images. So I don't need any help anymore. But thanks to all who viewed this and thanks Curt Y for the video!
    ashmic19

  • Web Gallery help separating photos into 2 collections

    Help creating web gallery please. I would like to separate photos in the gallery into 2 different collections or categories. When I set up my web gallery in LR 2.0 and choose the first set of photos, I can name this collection title on the right panel. How can I then set up a second collection with different photos so they both show up in the gallery on the web and a viewer can choose either topic and then view the photos within it? Thanks.
    Matthew Kraus

    You need to create a master gallery page and link to the pages within. There is no automatic way to do this.
    There are 3rd party options: LRB Portfolio (disclaimer: mine), Auto Index from The Turning Gate will do this with Galleries from the Turning Gate.

  • Web gallery problems in flash catalyst. Please help me!

    I've made a web gallery in adobe bridge cs5 that I saved to my harddrive as a swf-file. But when I make a blank page in Flash Catalyst and insert that swf-file nothing happens when I try to view it in "run project". What have I missed. It feels like some file is missing or something. I've tried to import the swf-file in a html document in dreamweaver but it is the same problem there. Can someone help me please?
    Thanks
    Max

    I really appreciate your reply.
    but i am still a little bit confused.
    Why bookstore1 needs syncronized database conection?
    i found the following scriptlet in bookstore servlet of bookstore1 application.
    bookDB =(BookDBAO)getServletContext().getAttribute("bookDB");
    Does it mean bookDB created here is the same object created in servlet context, that is, they use the same block of memory?
    i found the counterpart in bookstore2
    <jsp:setProperty name="bookDB" property="database" value="${bookDBAO}" />
    Does it mean the bookDB bean duplicates another instance of bookDBAO created in servlet context for its database property ,that is,they don't use the same block of memory?

  • Pixelated Images on Web Gallery - Help!

    We have been receiving complaints from our clients that our web gallery images are pixelated - and indeed they are to the point that you cannot recognize the person in the image! I have tried to upload different resolutions - high (3000 pixels or more) and low (900 x 1000 or so) and nothing seems to change the way the images look. We use bridge we gallery for clients to order from, so this is obviously effecting what they want to order. Anyone have any ideas on how to remedy this? Please help!

    I am not sure how to determine that. The only options available there are for Small - Extra Large images, nothing about the size in K. When it is in Bridge it looks the way all photos look in Bridge, but when I actually upload it to the web that is when things get ugly.

Maybe you are looking for

  • Why do i have to contact support every time i buy an app?

    I can't believe I am the only person experiencing this. I've been an apple customer for over six years. I have two personal ipads, one work ipad, and two personal iphones with them. For some unknown reason this year they decided to put some restricti

  • Copy new attributes in new releases

    Could you please provide detailed steps using WCF_CC or manual process of new attributes in CRM 7.0 EhP1? I'm working on message in UI Configuration check in WCF_CC which states, "Context node Attribute does not exist: STRUCT.ZZFIELD in Object type B

  • Moved catalog and now LR won't open it by default. Help?

    I'm running LR2 (I know, first step, UPGRADE!), but in the meantime, I had to move my catalog because my drive got full. Under the Backup dialog box I chose the new location. But when I just click on the LR icon to open the program it opens with the

  • (ATI RADEON RX9550) Need help! solved

    I have the system in my signature. Recently a problem occured. First some horizontal lines occurs and then my system locks or give blue screen or restart. I have formatted and installed WindowsXP again but nothing changed. I tried different drivers (

  • Impact on physcial machines and network when running Capacity Planner.

    I need to find a white paper or an app note that explains how Capacity Planner collects data from physical machines.  I seem to have been pulled into the middle of a squabble between IT staff members that has the manager halting a virtualization proj