• Gear
  • Shots
  • Photo Craft
  • Video
  • Wide Angle
  • Support
  • New Stuff
  • More
Support SmugMug Customization how to remove the text: "gallery page 1 (of x)"

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
Page 1  of  2
1 2
Old Sep-17-2005, 08:30 AM
#1
Andy is offline Andy OP
panasonikon
Andy's Avatar
how to remove the text: "gallery page 1 (of x)"
i searched, it's out there i know but i couldn't find it. can you show me a post where this is done, or just hit me with the code to do it?

and it just goes in css section of cobranding, or in the gallery itself?



Quote:
Originally Posted by mike lane
I'm going under the assumption that you only want that removed in the case that there is not more than one page. To do that you'll have to do a per-gallery customization. That's easy thanks to the new cobranding.

Start off with:

.gallery_xxxxxx .pageNav {
visibility:hidden;
}

xxxxxx obviously is the gallery number and you can get that straight from the URL in your address bar. I use visibility hidden here because I don't want the element to collapse and make the photo nav stuff fall to the left.

I do not know a way to do this that is not a per-gallery solution. If you have more than one gallery that you want to do this you can simply do the following:

.gallery_xxxxxx .pageNav, .gallery_yyyyyy .pageNav, .gallery_zzzzzz .pageNav {
visibility:hidden;
}

You can put as many in there as you'd like, you don't have to stop at 3.
The way I did it on dgrin.smugmug.com for the one page galleries is like this:

/* kill page navigation in journal style */
.journal .albumNav {display: none;}

/* allow page navigation in this gallery only */
.gallery_105564 .albumNav {display:block;}
__________________
Andy
Moon River PhotographyWorkshopsGoogle+FacebookTwitter
Old Sep-17-2005, 08:31 AM
#2
Andy is offline Andy OP
panasonikon
Andy's Avatar
thanks mike

very usable, for single-page galleries. i used it for this gallery
__________________
Andy
Moon River PhotographyWorkshopsGoogle+FacebookTwitter
Old Feb-24-2006, 11:11 AM
#3
BassAngler is offline BassAngler
Big grins
BassAngler's Avatar
Where do you put this code? I can't seem to make it work.
Old Feb-24-2006, 11:26 AM
#4
Andy is offline Andy OP
panasonikon
Andy's Avatar
Quote:
Originally Posted by BassAngler
Where do you put this code? I can't seem to make it work.
It goes in your CSS section of your customization. Control Panel>Customize.

OK?
__________________
Andy
Moon River PhotographyWorkshopsGoogle+FacebookTwitter
Old Feb-24-2006, 11:28 AM
#5
BassAngler is offline BassAngler
Big grins
BassAngler's Avatar
To get more specific on what the code actually does, I am looking to remove this from my html only pages:

Highland Photo > About > About Me
Old Feb-24-2006, 11:30 AM
#6
bwg is offline bwg
SmugMug Sorcerer
bwg's Avatar
Quote:
Originally Posted by BassAngler
To get more specific on what the code actually does, I am looking to remove this from my html only pages:

Highland Photo > About > About Me
ok, so in your css customization section put

.gallery_XXXX #breadcrumb {display: none;}

where XXXX is the gallery number
__________________
Pedal faster
Old Feb-24-2006, 11:32 AM
#7
BassAngler is offline BassAngler
Big grins
BassAngler's Avatar
That's a beautiful thing! You guys rock!!
Old Feb-24-2006, 02:55 PM
#8
caseserve is offline caseserve
Case Photography
caseserve's Avatar
Quote:
Originally Posted by BassAngler
That's a beautiful thing! You guys rock!!
If you're running FF with web dev, take a look at my css it's very well documented
caseserve.smugmug.com
or
www.caseserve.com
__________________
John
Case Photography
http://caseserve.smugmug.com
www.CasePhotographyOnline.com
Old Feb-24-2006, 03:43 PM
#9
peestandingup is offline peestandingup
Major grins
peestandingup's Avatar
Awesome info, thanks guys.

Does anyone know how to get rid of this little bugger in my non photo html-only page??

Old Feb-24-2006, 03:54 PM
#10
bwg is offline bwg
SmugMug Sorcerer
bwg's Avatar
Quote:
Originally Posted by peestandingup
Awesome info, thanks guys.

Does anyone know how to get rid of this little bugger in my non photo html-only page??

linky linky?
__________________
Pedal faster
Old Feb-24-2006, 04:00 PM
#11
peestandingup is offline peestandingup
Major grins
peestandingup's Avatar
Booya.
Old Feb-24-2006, 04:03 PM
#12
bwg is offline bwg
SmugMug Sorcerer
bwg's Avatar
Quote:
Originally Posted by peestandingup
.gallery_XXXXX .nophotos {display: none;}

they got firefox web developer for that fancy mac of yours?
__________________
Pedal faster
Old Feb-24-2006, 04:12 PM
#13
peestandingup is offline peestandingup
Major grins
peestandingup's Avatar
Quote:
Originally Posted by bigwebguy
they got firefox web developer for that fancy mac of yours?
I would hardly call it fancy. Bottom of the bunch Mac mini, unlike you Mr top of the line Macbook Pro. <<Thats me being hella jealous.

Oh, and I have that FF extension, but suck at using it. How would I have gotten that code using it?? Do tell.
Old Feb-24-2006, 04:17 PM
#14
bwg is offline bwg
SmugMug Sorcerer
bwg's Avatar
Quote:
Originally Posted by peestandingup
I would hardly call it fancy. Bottom of the bunch Mac mini, unlike you Mr top of the line Macbook Pro. <<Thats me being hella jealous.

Oh, and I have that FF extension, but suck at using it. How would I have gotten that code using it?? Do tell.
information button > Display Element Information

then just move mouse over what you want to see!
__________________
Pedal faster
Old Feb-24-2006, 04:27 PM
#15
peestandingup is offline peestandingup
Major grins
peestandingup's Avatar
Hmm, I dont see that under Information. Display Anchors gives me some info. Maybe its worded different for my version.
Old Feb-24-2006, 04:30 PM
#16
bwg is offline bwg
SmugMug Sorcerer
bwg's Avatar
Quote:
Originally Posted by peestandingup
Hmm, I dont see that under Information. Display Anchors gives me some info. Maybe its worded different for my version.
make sure you have latest version 1.0.2

link is in my sig
__________________
Pedal faster
Old Feb-24-2006, 04:47 PM
#17
peestandingup is offline peestandingup
Major grins
peestandingup's Avatar
That did it! Neato!! This will def help. Gracias!
Old Feb-24-2006, 05:31 PM
#18
Andy is offline Andy OP
panasonikon
Andy's Avatar
Quote:
Originally Posted by peestandingup
Awesome info, thanks guys.

Does anyone know how to get rid of this little bugger in my non photo html-only page??

This is also VERY WELL documented in the FAQ:
http://www.dgrin.com/showthread.php?t=26043

ENTRY for HTML only pages:
http://www.dgrin.com/showpost.php?p=186127&postcount=19

Use the FAQ, we work hard to keep that info current and useable

Thanks...
__________________
Andy
Moon River PhotographyWorkshopsGoogle+FacebookTwitter
Old Sep-15-2006, 08:23 AM
#19
Andy is offline Andy OP
panasonikon
Andy's Avatar
Quote:
Originally Posted by Skyes Art
I put this and the code above for two galleries (Guest Book and About) in my CSS to try to eliminate "1of1 galleries" and the option for viewing different "sizes".......


it worked for my Guest Book but not for About...
Any help on what I did wrong?


Thank you

Sky
www.skyesart.com
Sky, it's because you are linking to a single image page, not a journal page.

Add this to your CSS:

.gallery_1884641 #albumNav_top,
.gallery_1884641 #albumNav_bottom {display: none;}
__________________
Andy
Moon River PhotographyWorkshopsGoogle+FacebookTwitter
Old Oct-30-2006, 06:42 PM
#20
jevidon is offline jevidon
Big grins
jevidon's Avatar
changing a certain string in the breadcrumb?
My new site setup has the categories on a separate page from the homepage. However, if someone hits the first string in my breadcrumb, it takes them to the start screen with my slideshow as opposed to my categories. Can I either change where that link directs them to, or can I remove it altogether?
Page 1  of  2
1 2
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