PDA

View Full Version : Galleries link doesn't work


Sewerman
Oct-17-2007, 05:58 PM
Two problems
1. My link to photograph galleries in the nav bar no longer works if I'm logged in or not.

2. My slideshow does not work when I'm logged in but works when I'm logged out.

I must have messed something up but I can't spot it? any help please

http://plumgraphics.smugmug.com/

Allen
Oct-17-2007, 06:33 PM
Two problems
1. My link to photograph galleries in the nav bar no longer works if I'm logged in or not.

2. My slideshow does not work when I'm logged in but works when I'm logged out.

I must have messed something up but I can't spot it? any help please

http://plumgraphics.smugmug.com/
Remove the red *'s in your footer code and don't leave a space.

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

if (hasPath("map"))
YD.addClass(document.body, "map");
<*/script*>

Sewerman
Oct-17-2007, 07:36 PM
Remove the red *'s in your footer code and don't leave a space.

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

if (hasPath("map"))
YD.addClass(document.body, "map");
<*/script*>

Thanks Allan the slide show works but the link in the nav bar still will not work when logged out?

Allen
Oct-17-2007, 07:52 PM
Thanks Allan the slide show works but the link in the nav bar still will not work when logged out?
This in your CSS
.galleries background {display: none;}

Should probably read
.galleries #galleriesBox {background: none;}


Move the red from up in your CSS to below this and see if you get
your galleries back.

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

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

Sewerman
Oct-17-2007, 08:19 PM
This in your CSS
.galleries background {display: none;}

Should probably read
.galleries #galleriesBox {background: none;}


Move the red from up in your CSS to below this and see if you get
your galleries back.

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

.galleries #galleriesBox,
.galleries #categoriesBox,
.galleries #featuredBox {
display: block;
}
Thanks Allan I think you got it all fixed up for me !!