PDA

View Full Version : Editing my slideshow page (which is a copy of my home page)


Fun Dude
Oct-13-2008, 05:49 PM
BACKGROUND

I used the tutorial to successfully copy my home page
http://www.funtimesphotography.com/

to another page called:
http://www.funtimesphotography.com/slideshow

Then I used the following code to try to eliminate display of all boxes / sections on the slideshow page except for the mySlideShow section which I wanted to keep.
___________________________________

/* blocks display of sections from slideshow page */

.slideshow #popularphotoBox,
.slideshow #galleries Box,
.slideshow #categories Box,
.slideshow #keywords Box,
.slideshow #featured Box,
.slideshow #bio Box {
display: none;
}
___________________________________

QUESTION 1
The Popular Photos box did NOT disappear from the slideshow page
but the other above requested boxes did. Apparently my first above .slideshow line is wrong.
How should it read ?
P.S. Have tried several guesses but none of them worked

QUESTION 2
I now want to eliminate the slideshow from showing in my home page but not from my slideshow page.
How can this be done ?

jfriend
Oct-13-2008, 06:04 PM
The CSS:

.slideshow #popularPhotos {display:none;}

will make the popular photos not show on your slideshow page. Note the lack of the word "box" in this version compared to what you have.

The CSS:

#mySlideShow {display:none;}
.slideshow #mySlideShow {display:block;}

will make your slideshow only show on your slideshow page.

Fun Dude
Oct-13-2008, 07:41 PM
The CSS:

.slideshow #popularPhotos {display:none;}

will make the popular photos not show on your slideshow page. Note the lack of the word "box" in this version compared to what you have.

The CSS:

#mySlideShow {display:none;}
.slideshow #mySlideShow {display:block;}

will make your slideshow only show on your slideshow page.

THANKS :D for the very fast response.

Everything worked perfectly ! Your feedback is much appreciated.