PDA

View Full Version : flash problem


gateway photo
Dec-08-2008, 07:08 AM
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 (http://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

Allen
Dec-08-2008, 08:13 AM
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 (http://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 (http://dgrin.smugmug.com/gallery/2160039) and scroll
down to "The Galleries Page" sections and add the javascript and CSS.

Howdy Neighbor :wave

gateway photo
Dec-08-2008, 01:11 PM
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?

Allen
Dec-08-2008, 01:58 PM
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',

gateway photo
Dec-09-2008, 05:51 AM
:barb :clap :barb :ivar :bow :bow :bow Thanks Al. Tom