PDA

View Full Version : need help with flyouts to galleries


NHDave
Apr-25-2008, 04:53 AM
Hi,

wonder if I can get some help. I recently added a flyout
which is working however, I'm having trouble getting to my
little league galleries galleries.

I am trying to get to

Galleries ---> Goffstown -----> and them when I click on
T-ball, I'd like to get the galleries for the 5 games to appear
(ex: Sully's vs etc...) on one page. They appear while I'm logged
in however they don't when I'm logged out. Can you help?


Likewise I'd like to do it for "Farm" as well. Majors and Minors
I don't have to worry about just yet.


Thanks, Dave

Allen
Apr-25-2008, 05:04 AM
Hi,

wonder if I can get some help. I recently added a flyout
which is working however, I'm having trouble getting to my
little league galleries galleries.

I am trying to get to

Galleries ---> Goffstown -----> and them when I click on
T-ball, I'd like to get the galleries for the 5 games to appear
(ex: Sully's vs etc...) on one page. They appear while I'm logged
in however they don't when I'm logged out. Can you help?


Likewise I'd like to do it for "Farm" as well. Majors and Minors
I don't have to worry about just yet.


Thanks, Dave
You are telling them not to show with this in your CSS

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


Perhaps you wanted them not showing on your homepage.

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

NHDave
Apr-25-2008, 06:24 AM
Thanks Allen, that took care of it... Dave