PDA

View Full Version : Galleries and BioBox Display control


phwayne
Sep-01-2008, 06:55 PM
The home page on my site has the BioBox with the Shizam slide show. This is fine.

Directly below, the "Galleries Categories" box is displayed. How can I NOT display?

I tried:
.homepage,#galleries {
display: none;
}

This blocked BOTH the bioBox and galleries on the home page.

See
peterwayne.smugmug.com

Here is the CSS code:
#userBio {
text-align: center;
}
#bioBox .photo {
display: none;
}
#bioBox .boxBottom {
background: none;
border: none;
}
#bioBox .boxTop {
display: none;
}
#homepage,#bioBox {
margin: 0 auto;
width: 620px;
}

denisegoldberg
Sep-02-2008, 04:30 AM
The home page on my site has the BioBox with the Shizam slide show. This is fine.

Directly below, the "Galleries Categories" box is displayed. How can I NOT display?

I tried:
.homepage,#galleries {
display: none;
}

This blocked BOTH the bioBox and galleries on the home page.

There should be a space between .homepage and #galleries, not a comma. And you need more than just that one entry. Go to this tutorial - http://dgrin.smugmug.com/gallery/2160039 - and make sure that you have all of the code in the sections titled The Galleries.

--- Denise

phwayne
Sep-03-2008, 05:42 PM
There should be a space between .homepage and #galleries, not a comma. And you need more than just that one entry. Go to this tutorial - http://dgrin.smugmug.com/gallery/2160039 - and make sure that you have all of the code in the sections titled The Galleries.

--- Denise

Thanks for pointing me in the right direction. That did the trick.

Peter