PDA

View Full Version : Little help. Can't find my galleries.....


Dano
Dec-18-2007, 07:48 PM
I decided to overhaul my page and started with the Shizam Slide Show. I got the slide show working but now when I click the Gallery button in my nav bar all I get is the same page as my home page. I would like it to display Categories without the bio box slide show like it used to do. My CSS is a mess so I'm pretty much ready to delete the whole thing and start over. Any help would be apreciated. Thanks. http://dmunson.smugmug.com/

Allen
Dec-18-2007, 09:31 PM
I decided to overhaul my page and started with the Shizam Slide Show. I got the slide show working but now when I click the Gallery button in my nav bar all I get is the same page as my home page. I would like it to display Categories without the bio box slide show like it used to do. My CSS is a mess so I'm pretty much ready to delete the whole thing and start over. Any help would be apreciated. Thanks. http://dmunson.smugmug.com/
A little CSS clean up.

Remove this from your CSS.

http://dmunson.smugmug.com/gallery/2667795#158538464

change this
** Remove Nav in Guestbook **
to this
/* * Remove Nav in Guestbook * */


Remove bold from your CSS.

New

body {
opacity: 1;
}

You're missing the code for the duplicate homepage gallery hack. See here (http://dgrin.smugmug.com/gallery/2160039).

Add this to your javascript

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


Add this to the top of your footer.

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

Dano
Dec-19-2007, 01:39 PM
Thanks Allen that did the trick.