PDA

View Full Version : Couple More "How To" Gallery Questions


jclguru
Sep-09-2006, 05:32 AM
1. The line that reads: mrspeed (http://mrspeed.smugmug.com/) > Animals (http://mrspeed.smugmug.com/Animals) > Birds - The National Aviary
Is there a way to get rid of that line altogether (including the slideshow)
for all galleries.

2. The font size where it says: gallery pages, 1 of x, etc. How do I change
the font size (lets say 10px)?

3. The words 'gallery pages'. This probably sounds stupid, but can that
be changed to Gallery Pages? If so, I'm guessing the resulting code
would also let me change Gallery Pages to whatever wording I'd wish?

4. I've seen on a few sites they've added words like This Photo &
Multiple to photos. I think this is done in js?

Thanks!
Doug (www.mrspeed.smugmug.com (http://www.mrspeed.smugmug.com))

Andy
Sep-09-2006, 08:08 AM
1. The line that reads: mrspeed (http://mrspeed.smugmug.com/) > Animals (http://mrspeed.smugmug.com/Animals) > Birds - The National Aviary
Is there a way to get rid of that line altogether (including the slideshow)
for all galleries.

Add this (you'll see it logged in still, which is important for the logged-in functions:

#breadcrumb {display: none;}
.loggedIn #breadcrumb {display: block;}


2. The font size where it says: gallery pages, 1 of x, etc. How do I change
the font size (lets say 10px)?


#albumNav_top a.nav {font-size: 10px;}


3. The words 'gallery pages'. This probably sounds stupid, but can that
be changed to Gallery Pages? If so, I'm guessing the resulting code
would also let me change Gallery Pages to whatever wording I'd wish?


.title {text-transform:capitalize;}


4. I've seen on a few sites they've added words like This Photo &
Multiple to photos. I think this is done in js?
See My FAQ:
http://www.dgrin.com/showthread.php?t=26043
There's a hack there that does just this :)

OH You have to remove the <style> and </style> from your CSS, too please.

jclguru
Sep-09-2006, 08:11 AM
Add this (you'll see it logged in still, which is important for the logged-in functions:

#breadcrumb {display: none;}
.loggedIn #breadcrumb {display: block;}



#albumNav_top a.nav {font-size: 10px;}



.title {text-transform:capitalize;}


See My FAQ:
http://www.dgrin.com/showthread.php?t=26043
There's a hack there that does just this :)

OH You have to remove the <style> and </style> from your CSS, too please.

Thanks Andy. Right now I'm going thru Ivar's tutorial on Web Developer
and trying to learn some of this stuff myself. Pretty cool stuff!

Doug

jclguru
Sep-09-2006, 08:28 AM
Thanks Andy. Right now I'm going thru Ivar's tutorial on Web Developer
and trying to learn some of this stuff myself. Pretty cool stuff!

Doug

Geez, I hate to ask this, but what # from the FAQ?

Doug

ivar
Sep-10-2006, 02:08 AM
Geez, I hate to ask this, but what # from the FAQ?

DougI couldn't find it right away myself.... there was some stuff on changing words, but those were other words. It works the same though, but i think this is what you are looking for: http://www.dgrin.com/showthread.php?t=31979

jclguru
Sep-10-2006, 04:47 AM
I couldn't find it right away myself.... there was some stuff on changing words, but those were other words. It works the same though, but i think this is what you are looking for: http://www.dgrin.com/showthread.php?t=31979

Yep, thats it.

Didn't work though. Maybe there's something else in my code overriding it?
Wouldn't surprise me with all of this new stuff I've been trying.

Doug