PDA

View Full Version : Most Popular Photos


402photography.com
Jan-30-2009, 03:27 AM
RE: 402photography.com

Can someone help me with hiding the "most popular photos" on the main page, but being visible on the galleries page? The gallery page is a duplication of the main page, so I am not sure if it is possible. It either shows on both or is hidden on both with the customization options given. I am assuming there is a CSS code out there, I just have not been able to find it.

Thanks,
Have a great day!

John

denisegoldberg
Jan-30-2009, 03:45 AM
Can someone help me with hiding the "most popular photos" on the main page, but being visible on the galleries page? The gallery page is a duplication of the main page, so I am not sure if it is possible. It either shows on both or is hidden on both with the customization options given. I am assuming there is a CSS code out there, I just have not been able to find it.

Add this to your CSS:
.homepage #popularPhotos {
display: none;
}
.galleries #popularPhotos {
display: block;
}
--- Denise

402photography.com
Jan-30-2009, 10:53 AM
Add this to your CSS:
.homepage #popularPhotos {
display: none;
}
.galleries #popularPhotos {
display: block;
}
--- Denise

Perfect! Thanks Denise!! You are great!