PDA

View Full Version : How to hide slideshow and show galleries?


kits
May-16-2007, 12:21 PM
First, thanks to all who posted some great information here.

I did the nav bar and the famous slideshow. All that works fine and I am able to hide my galleries displayed by categories hidden from my home at:
http://polina.smugmug.com

Now when you click on My Pictures in nav bar it takes to polina.smugmug.com/galleries. On this page I want to be able to hide slideshow and show my galleries by Categories.

I have the following code in my CSS and it is always hiding my galleries.


.homepage #galleriesBox,
.homepage #categoriesBox,
.homepage #featuredBox {
display: none;
}

.galleries #galleriesBox,
.galleries #categoriesBox,
.galleries #featuredBox {
display: block;
}

.galleries #bioBox {
display: none;
}

richW
May-16-2007, 12:39 PM
Welcome to dgrin....:wave

You need to add the JS for the galleries page to work.
From this post: http://dgrin.smugmug.com/gallery/2160039

Add to your JS section:

function hasPath(sPath)
{
re = new RegExp("\/" + sPath + "(\/|$)");
return re.test(window.location)
}

Add to the footer above the slideshow code:

<*script type="text/javascript" language="javascript"*>
if (hasPath("galleries"))
YD.addClass(document.body, "galleries");
<*/script*>

Remove *'s

Allen
May-16-2007, 12:42 PM
First, thanks to all who posted some great information here.

I did the nav bar and the famous slideshow. All that works fine and I am able to hide my galleries displayed by categories hidden from my home at:
http://polina.smugmug.com

Now when you click on My Pictures in nav bar it takes to polina.smugmug.com/galleries. On this page I want to be able to hide slideshow and show my galleries by Categories.

I have the following code in my CSS and it is always hiding my galleries.


.homepage #galleriesBox,
.homepage #categoriesBox,
.homepage #featuredBox {
display: none;
}

.galleries #galleriesBox,
.galleries #categoriesBox,
.galleries #featuredBox {
display: block;
}

.galleries #bioBox {
display: none;
}

You do not have the "galleries hack" installed so the link to the galleries is
just returning you to your homepage.

Go to this page (http://dgrin.smugmug.com/gallery/2160039) and scroll down to The Galleries Page I and start reading there.

kits
May-16-2007, 02:10 PM
Thanks you to you both. I got it. Now, will work on pop-up menu for My Pictures nav like smugmugs Themes pop-up menu.