PDA

View Full Version : Featured gallery


jenfootprint
Jan-02-2008, 01:08 AM
Hi there,

I added featured galleries to my smugsmug website but they don't show on my homepage, instead they were shown on my Galleries page. Your help is appreicated. :bow

http://jenfootprint.smugmug.com/galleries

Write: jenfootprint

denisegoldberg
Jan-02-2008, 05:17 AM
Hi there,

I added featured galleries to my smugsmug website but they don't show on my homepage, instead they were shown on my Galleries page. Your help is appreicated. :bow

http://jenfootprint.smugmug.com/galleries

Write: jenfootprint
You turned them off on your home page and "on" on your galleries page with this CSS:
.homepage #galleriesBox,
.homepage #categoriesBox,
.homepage #featuredBox {
display: none;
}
.galleries #bioBox {
display: none;
}
.galleries #galleriesBox,
.galleries #categoriesBox,
.galleries #featuredBox {
display: block;
}

If you want the featured galleries to show on your homepage and not on your galleries page, change it to this:
.homepage #galleriesBox,
.homepage #categoriesBox {
display: none;
}
.homepage #featuredBox {
display: block;
}
.galleries #bioBox {
display: none;
}
.galleries #galleriesBox,
.galleries #categoriesBox {
display: block;
}
.galleries #featuredBox {
display: none;
}

--- Denise