• Gear
  • Shots
  • Photo Craft
  • Video
  • Wide Angle
  • Support
  • New Stuff
  • More
Support SmugMug Customization Phase 4 CSS changes

FAQtoid

Ever wanted to create an Avatar? Creating an Avatar!

Searching Dgrin with Google Searching with Google

Dgrin Challenges

Congratulations to the Winner of DSS #128 (Sunrise or Sunset), ShootingStar.

The next Dgrin Challenge DSS #129 (Silhouette Revisited ) is open for entries through May 27th, 2013 at 8:00pm PDT.

As always, we look forward to your participation but please do take a moment to read through the rules before posting your entry.

Past DSS Challenge Winners, DSS Challenge Rules, and other important DSS Challenge information is here.

Need some help with Accessories?

Tutorials

Ever find yourself wondering just how someone managed to create an image using different effects?

Here are three simple tutorials we hope will encourage you to try something new.

The Hot Seat

A lifelong interest in landscape photography has led Eyal Oren to make a study of his adopted hometown of Marblehead, MA. As you can see, his dedication is paying off!

Africa!

Dgrinners Harryb, Pathfinder, and others joined Andy Williams and Marc Muench on Safari in East Africa recently. Here are some awesome threads to check out!

 
Thread Tools Display Modes
Old Oct-14-2005, 02:49 PM
#1
{JT} is offline {JT} OP
Code Monkey
{JT}'s Avatar
Phase 4 CSS changes
There was not a lot changed this phase, except one major one:
#keywords is now #photoKeywords

The reason? Well, there is already a tag on the page that reserves the name keywords - the meta tag :) So problems came up on certain browsers. All is well now though.
Old Jan-15-2006, 04:50 AM
#2
Andy is offline Andy
panasonikon
Andy's Avatar
Quote:
Originally Posted by {JT}
There was not a lot changed this phase, except one major one:
#keywords is now #photoKeywords

The reason? Well, there is already a tag on the page that reserves the name keywords - the meta tag :) So problems came up on certain browsers. All is well now though.

So, to remove keywords from showing up underneath your photos, put this in your CSS section of your customization (control panel>customize)

#photoKeywords { display: none; }
__________________
Andy
Moon River PhotographyWorkshopsGoogle+FacebookTwitter
Old Oct-03-2006, 07:07 PM
#3
DKwan is offline DKwan
Geginner brinner
DKwan's Avatar
Quote:
Originally Posted by Andy
So, to remove keywords from showing up underneath your photos, put this in your CSS section of your customization (control panel>customize)

#photoKeywords { display: none; }
Didn't work for me. I had to put:
Code:
.photoDetail {display: none;}
#photoKeywords {display: none;}
Did I do something wrong? Not a CSS expert.
__________________
Daniel Kwan | DKwan.com | Smugmug | MySpace | Advice for Noobs | China
Old Oct-03-2006, 07:13 PM
#4
Andy is offline Andy
panasonikon
Andy's Avatar
Quote:
Originally Posted by DKwan
Didn't work for me. I had to put:
Code:
.photoDetail {display: none;}
#photoKeywords {display: none;}
Did I do something wrong? Not a CSS expert.
You might have to override theme specificity:

#photoKeywords {display: none !important;}

Try that.
__________________
Andy
Moon River PhotographyWorkshopsGoogle+FacebookTwitter
Old Jul-03-2007, 08:15 AM
#5
mogue is offline mogue
Major grins
Quote:
Originally Posted by Andy
You might have to override theme specificity:

#photoKeywords {display: none !important;}

Try that.
Hi Andy,
Neither of your codes worked for me, but DKwan's works like a charm. Thanks.

lucy
Old Apr-21-2008, 09:12 AM
#6
gordonsmith is offline gordonsmith
Big grins
Quote:
Originally Posted by mogue
Hi Andy,
Neither of your codes worked for me, but DKwan's works like a charm. Thanks.

lucy
Andy's solution worked fine for mine.
Old Aug-05-2009, 10:34 AM
#7
Vana is offline Vana
Spring chicken
I tried all of the above, but didn't work. Please help!

site: www.localcolor7.com
__________________
Vana
Old Aug-05-2009, 10:36 AM
#8
Andy is offline Andy
panasonikon
Andy's Avatar
Quote:
Originally Posted by Vana
I tried all of the above, but didn't work. Please help!

site: www.localcolor7.com
specifically and exactly, what are you trying to do and where?

http://www.localcolor7.com/gallery/9...09924431_27Jtb

also, why aren't you using stretchy?
__________________
Andy
Moon River PhotographyWorkshopsGoogle+FacebookTwitter
Old Sep-15-2009, 12:49 PM
#9
martinfroggett is offline martinfroggett
Big grins
why won't they go?
Hi, I've tried all of the above and i can't seem to make the keywords disappear from below the main image. Will search engines still pick this indo up even if it is not visible on the page.

thanks in advance

http://www.martinfroggett.com/galler...45083179_6rNpf
__________________
www.martinfroggett.com
Old Sep-15-2009, 12:52 PM
#10
jfriend is offline jfriend
Scripting dude-volunteer
Quote:
Originally Posted by martinfroggett
Hi, I've tried all of the above and i can't seem to make the keywords disappear from below the main image. Will search engines still pick this indo up even if it is not visible on the page.

thanks in advance

http://www.martinfroggett.com/galler...45083179_6rNpf
You have an error in your CSS. Change the comment here to have proper end comment characters.

/*==nokeywordvis===*/

.photoDetail {display: none;}
#photoKeywords { display: none !inportant;
}


Also, as I think I've told you before, once you fix the above problem, if you leave this CSS in, you will have no tools menu in any gallery. This CSS is evil and should be removed. If you are trying to hide something, then there are better ways to hide it that won't remove your Tools menu.

/*===breadrumb===*/
#breadcrumb {visibility: hidden;}
#altViews {visibility: visible;}
.loggedIn #breadcrumb {visibility: hidden;}

It is up to the search engine whether or not they will index something that you have hidden from view. It is in the page, so it's up to the search engine whether they realize that it's hidden and then whether they decide to index text that is not shown.
__________________
--John
HomepagePopular
JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
Old Sep-16-2009, 08:42 AM
#11
martinfroggett is offline martinfroggett
Big grins
I've corrected my CSS and got rid of the breadcrumbs CSS until I have time to research a better way to remove them. The keywords are still there though.

The other thing I would really like on my new site (and I'm not sure which thresd to post this in) is a gallery preview thumb like in itunes grid view where for example if an artist has 15 albums with art you can move your mouse from the left to the right of the image and it scrolls through all the images and by clicking on it takes you to that album. Aperture also has the same feature for previewing albums when you are in the library view.

Thaks again for your support. I've only been using SM for a week and the support is fantastic
__________________
www.martinfroggett.com
Old Sep-16-2009, 08:51 AM
#12
jfriend is offline jfriend
Scripting dude-volunteer
Quote:
Originally Posted by martinfroggett
I've corrected my CSS and got rid of the breadcrumbs CSS until I have time to research a better way to remove them. The keywords are still there though.

The other thing I would really like on my new site (and I'm not sure which thresd to post this in) is a gallery preview thumb like in itunes grid view where for example if an artist has 15 albums with art you can move your mouse from the left to the right of the image and it scrolls through all the images and by clicking on it takes you to that album. Aperture also has the same feature for previewing albums when you are in the library view.

Thaks again for your support. I've only been using SM for a week and the support is fantastic
You've misspelled "important" and there's no need for the separate rule for photoDetail.

Change this:

.photoDetail {display: none;}
#photoKeywords { display: none !inportant;
}

to this:

#photoKeywords {display: none !important;}

Breadcrumbs can be hidden without affecting the tools button with this:

#breadCrumbTrail {display:none;}

or if you want them to show only when you are logged in, you can use:

.notLoggedIn #breadCrumbTrail {display:none;}

You should also read this note about the pitfalls of hiding the entire breadcrumb.
__________________
--John
HomepagePopular
JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
Old Nov-20-2009, 05:10 PM
#13
Pilznr is offline Pilznr
Grin 4 A Pilsner
Pilznr's Avatar
Show Keywords ONLY when logged in
Is it possible to hide the keywords from public view, but still show them to me when I'm logged in?

NEVERMIND!!! I FOUND IT

.notLoggedIn #photoKeywords {display: none;}
__________________
M@

www.MattPilsner.com | FACEBOOK | BLOG

Last edited by Pilznr; Nov-20-2009 at 05:55 PM.
Tell The World!  

Thread Tools
Display Modes

Posting Rules  
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump