Galleries can't be seen through Categories

annex10annex10 Registered Users Posts: 4 Beginner grinner
edited February 10, 2009 in SmugMug Support
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

Comments

  • jfriendjfriend Registered Users Posts: 8,097 Major grins
    edited February 10, 2009
    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:
    [B]<[/B]script[B]>[/B]
    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');
    [B]<[/B]/script[B]>[/B]
    


    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;}
    --John
    HomepagePopular
    JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
    Always include a link to your site when posting a question
  • annex10annex10 Registered Users Posts: 4 Beginner grinner
    edited February 10, 2009
    jfriend wrote:
    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:
    [B]<[/B]script[B]>[/B]
    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');
    [B]<[/B]/script[B]>[/B]
    

    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
Sign In or Register to comment.