flash problem

gateway photogateway photo Registered Users Posts: 7 Beginner grinner
edited December 9, 2008 in SmugMug Support
I tried to follow the flash homepage but for some reason when I click on galleries it taking me to my homepage (BIO) and the only way to see my galleries is to check mark it as well as bio and then they both come up at home or galleries. any ideas, thanks Tom www.gatewayphoto.com also when you click on my slide show it takes you to smugmugs homepage and I would like it to go to my galleries

Comments

  • AllenAllen Registered Users Posts: 10,015 Major grins
    edited December 8, 2008
    I tried to follow the flash homepage but for some reason when I click on galleries it taking me to my homepage (BIO) and the only way to see my galleries is to check mark it as well as bio and then they both come up at home or galleries. any ideas, thanks Tom www.gatewayphoto.com also when you click on my slide show it takes you to smugmugs homepage and I would like it to go to my galleries
    You do not have the code for the galleries page, so to this tutor and scroll
    down to "The Galleries Page" sections and add the javascript and CSS.

    Howdy Neighbor wave.gif
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • gateway photogateway photo Registered Users Posts: 7 Beginner grinner
    edited December 8, 2008
    Thanks for the quick reply, unfortunatly I just tried all those codes and everything is still the same. here is what I have in CSS
    #navcontainer ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: center;
    }
    #navcontainer ul li {
    display: inline;
    }
    #navcontainer ul li a {
    text-decoration: none;
    padding: .2em 1em;
    color: #fff;
    background-color: #036;
    }
    #navcontainer ul li a:hover {
    color: #fff;
    background-color: #369;
    }
    #bioBox .photo {
    display: none;
    }
    #userBio {
    text-align: center !important;
    }
    .homepage #featuredBox {display:none;}
    .galleries #categoriesBox {display:block !important;}
    does any of this look right?
  • AllenAllen Registered Users Posts: 10,015 Major grins
    edited December 8, 2008
    Thanks for the quick reply, unfortunatly I just tried all those codes and everything is still the same. here is what I have in CSS
    #navcontainer ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: center;
    }
    #navcontainer ul li {
    display: inline;
    }
    #navcontainer ul li a {
    text-decoration: none;
    padding: .2em 1em;
    color: #fff;
    background-color: #036;
    }
    #navcontainer ul li a:hover {
    color: #fff;
    background-color: #369;
    }
    #bioBox .photo {
    display: none;
    }
    #userBio {
    text-align: center !important;
    }
    .homepage #featuredBox {display:none;}
    .galleries #categoriesBox {display:block !important;}
    does any of this look right?
    You missed this part for the show in "The Galleries Page II" section.
    Add to CSS
    .homepage #galleriesBox,
    .homepage #categoriesBox,
    .homepage #featuredBox {
        display: none;
    }
    
    .galleries #bioBox {
        display: none;
    }
    
    .galleries #galleriesBox,
    .galleries #categoriesBox,
    .galleries #featuredBox {
        display: block;
    }
    
    In your bio show code change this

    clickUrl: 'http://www.smugmug.com',

    to this

    clickUrl: '/galleries',
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • gateway photogateway photo Registered Users Posts: 7 Beginner grinner
    edited December 9, 2008
    wings.gifclap.gifwings.gif :ivar bowdown.gifbowdown.gifbowdown.gif Thanks Al. Tom
Sign In or Register to comment.