PDA

View Full Version : Some keyword clarification please


JMontes
May-03-2009, 05:20 PM
Hi, i've been reading up on keywords and decided to add them to my photos. Of course I did it how I thought I should, then I read the smugmug help and it would appear I was not doing it right. Anyway, the help says the following -

One at a time: http://cdn.smugmug.com/img/help/add-keywords_Black.gif When you're logged in, you'll see an "keywords: add" link under the main image in SmugMug viewing style (http://www.smugmug.com/help/viewing-online-photo-albums). Enclose each keyword in quotes, or separate keywords with commas.
In bulk: Find the Tools Menu (http://www.smugmug.com/help/photo-tools-menu) and choose Caption/Keyword (http://www.smugmug.com/help/web-photo-album). Look for that Quick Entry box at the top.
The rules are a bit different with Quick Entry. Every quick entry you add will be enclosed in quotes. So add sweet car and you get "sweet car" as a keyword. Add sweet then add car and you'll get two separate keywords.

I can't do one at a time as I don't have that option on my pages. Probably one of those formatting things I screwed up. The only way for me to see my kewords is to go to the bulk screen. I can see captions, just not keywords. Would eventually like to resolve this too.

With bulk, I get the impression that I need to add one word at a time, then save, then add a word, then save (for using the quick entry). Is this correct? Seems awful slow. I'm also experiencing awful web delay through smugmug as of late, so it just makes matters worse. I really don't understand how the keywords (and their formatting) work, which is why i'm posting here so sorry if this does seem like a stupid question.

If I add a keyword phrase like "xyz 123", would that image come up in a search for just xyz or 123 by themselves? or do I need to have "xyz 123", xyz, 123 like that? And is that proper formatting, or does every single word/phrase need to have quotes around it? The one at a time option says both....quotes on each word OR separate by commas. I just want to be sure I'm doing this right, I don't want to have to redo it once I'm done.

Thanks for any help in understanding this.

Andy
May-03-2009, 05:34 PM
you're hiding the keywords.

so use a url like this and you can see 'em

http://www.smugmug.com/gallery/8018759_MXp5r#521614363_Nk5Uv

but the best way is to change this code in your CSS:



/* hide keywords */
#photoKeywords {
display: none;
}


to


/* hide keywords */
.notLoggedIn #photoKeywords {
display: none;
}

JMontes
May-03-2009, 05:46 PM
Thanks Andy. I think seeing it via the link you provided clears up some of the other questions for me, i'll play with it. Thanks again

you're hiding the keywords.

so use a url like this and you can see 'em

http://www.smugmug.com/gallery/8018759_MXp5r#521614363_Nk5Uv

but the best way is to change this code in your CSS:



/* hide keywords */
#photoKeywords {
display: none;
}


to


/* hide keywords */
.notLoggedIn #photoKeywords {
display: none;
}