PDA

View Full Version : Remove slide show from homepage?


australfoto
Mar-31-2007, 03:12 PM
Hi,
I followed the tutorial to put the slide show on my homepage (australfoto.smugmug.com) but decided that I do not want it.

How do I remove it?

I was able to remove it, but now my smugmug homepage has my bio on it which I do not want because I decided that I will be using my webside (www.douglasengle.com) to link to the gallery page.

The galleries page does not even show up anymore, although I can link to each gallery directly through links I had previously saved.

I assume that since the slide show tutorial essentail makes a duplicate homepage, something go discombobulated when I decided to remove it.

Barb
Mar-31-2007, 03:16 PM
Hi,
I followed the tutorial to put the slide show on my homepage (australfoto.smugmug.com) but decided that I do not want it.

How do I remove it?

I was able to remove it, but now my smugmug homepage has my bio on it which I do not want because I decided that I will be using my webside (www.douglasengle.com (http://www.douglasengle.com)) to link to the gallery page.

The galleries page does not even show up anymore, although I can link to each gallery directly through links I had previously saved.

I assume that since the slide show tutorial essentail makes a duplicate homepage, something go discombobulated when I decided to remove it.
Hi :)

You can always hide your bio from your home page by clicking on hide in the upper right corner of that box.

As for your galleries, you most likely have code similar to this in your CSS:

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

Remove that and your galleries will return.

EDIT: I did not see your SmugMug site link before (even though it was right in front of my eyes), but rereading your message, I see it now!

Remove this from your CSS code box:

.homepage #galleriesBox,
.homepage #categoriesBox,
.homepage #featuredBox {
display: none;
}

}

.galleries #galleriesBox,
.galleries #categoriesBox,
.galleries #featuredBox {
display: block;
}

That will give you your galleries back on your home page and remove the "second" home page that now contains your galleries.

australfoto
Mar-31-2007, 03:24 PM
Hi :)

You can always hide your bio from your home page by clicking on hide in the upper right corner of that box.

As for your galleries, you most likely have code similar to this in your CSS:

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

Remove that and your galleries will return.

EDIT: I did not see your SmugMug site link before (even though it was right in front of my eyes), but rereading your message, I see it now!

Remove this from your CSS code box:

.homepage #galleriesBox,
.homepage #categoriesBox,
.homepage #featuredBox {
display: none;
}

}

.galleries #galleriesBox,
.galleries #categoriesBox,
.galleries #featuredBox {
display: block;
}

That will give you your galleries back on your home page and remove the "second" home page that now contains your galleries.

excellent! I knew it was my ignorance of CSS...