PDA

View Full Version : Galleries can't be seen through Categories


annex10
Feb-10-2009, 04:11 PM
Hello,
I was wondering if someone could take a look at www.markturekphotography.com for me. I am having an issue with my category/galleries. From the homepage clicking on the gallery tab will take you to my categories. When you click on the only category I have up right now it takes you to a couple of sub-categories. When you click on a sub-category however, it takes you to a blank page, not to a page that shows the galleries within that sub category. I am a pc user that only uses firefox. I have checked my cookies. I have had multiple people check from their own PCs to see if they can see the galleries but nobody can. Any ideas?

Thanks in advance,

Anne

jfriend
Feb-10-2009, 08:30 PM
The problem is caused by your CSS customizations. Here are a bunch of things to clean up:

1: Remove this from your CSS. If you want this for a homepage slideshow, it belongs in your bio, not in your CSS:

<script>
var ssConfig = {
AlbumID: '7303492',
newWindow: 'false',
transparent: 'false',
splash: 'http://www.smugmug.com/img/ria/ShizamSlides/smugmug_black.png',
showLogo: 'false',
clickUrl: 'http://www.smugmug.com',
showThumbs: 'false',
showButtons: 'false',
crossFadeSpeed: '350'
};

SM.flash.insertSlideshow(600, 600, ssConfig, 'transparent');
</script>


2: Remove this from your CSS:

<body link="#00868B">

This doesn't belong anywhere in your page.

3. Remove these CSS rules. They are hiding your categories and galleries in all pages when not logged in (so visitors can never see your galleries).

#galleriesBox {display:none;}
.loggedIn #galleriesBox {display:block;}
#categoriesBox {display:none;}
.loggedIn #categoriesBox {display:block;}

annex10
Feb-10-2009, 08:41 PM
The problem is caused by your CSS customizations. Here are a bunch of things to clean up:

1: Remove this from your CSS. If you want this for a homepage slideshow, it belongs in your bio, not in your CSS:

<script>
var ssConfig = {
AlbumID: '7303492',
newWindow: 'false',
transparent: 'false',
splash: 'http://www.smugmug.com/img/ria/ShizamSlides/smugmug_black.png',
showLogo: 'false',
clickUrl: 'http://www.smugmug.com',
showThumbs: 'false',
showButtons: 'false',
crossFadeSpeed: '350'
};

SM.flash.insertSlideshow(600, 600, ssConfig, 'transparent');
</script>

2: Remove this from your CSS:

<body link="#00868B">

This doesn't belong anywhere in your page.

3. Remove these CSS rules. They are hiding your categories and galleries in all pages when not logged in (so visitors can never see your galleries).

#galleriesBox {display:none;}
.loggedIn #galleriesBox {display:block;}
#categoriesBox {display:none;}
.loggedIn #categoriesBox {display:block;}


THANK YOU! :D