PDA

View Full Version : Hide album description for featured galleries


NWMtnGuy
Jun-20-2008, 08:51 AM
I have a couple of Featured Galleries on my homepage. I want to hide the gallery descriptions for these galleries, but ONLY on the homepage. In other words, if a visitor navigates to them via a Gallery Category I want them to see a description. Just not on the home page.

In my never-ending quest to figure out CSS and HTML along with the FF webdev toolbar I came up with this:

.homepage #albumdescription {
display: none;
}

Unfortunately, it doesn't seem to do anything so it must be wrong. :dunno

Anyone care to guide me through this? I can't seem to find an existing thread to solve this problem, but if it exists go ahead and point me to it.

Dale
http://www.dalebaskin.com

Allen
Jun-20-2008, 09:05 AM
I have a couple of Featured Galleries on my homepage. I want to hide the gallery descriptions for these galleries, but ONLY on the homepage. In other words, if a visitor navigates to them via a Gallery Category I want them to see a description. Just not on the home page.

In my never-ending quest to figure out CSS and HTML along with the FF webdev toolbar I came up with this:

.homepage #albumdescription {
display: none;
}

Unfortunately, it doesn't seem to do anything so it must be wrong. :dunno

Anyone care to guide me through this? I can't seem to find an existing thread to solve this problem, but if it exists go ahead and point me to it.

Dale
http://www.dalebaskin.com
I found it on your galleries page and not your homepage.
Try this

.galleries #featuredBox .description
{display: none;}

NWMtnGuy
Jun-20-2008, 09:12 AM
Al, that did the trick. Thanks! I see now that it's on the galleries page since I have a separate slideshow home page. At least I'm getting to the point where I look at your code and it makes sense instead of looking like ancient Greek.

Dale

vegaguy
Feb-16-2010, 10:31 AM
I found it on your galleries page and not your homepage.
Try this

.galleries #featuredBox .description
{display: none;}
what changes could i make to this to isolate certain galleries. My issue is that I want to hide all of my galleries' album descriptions but have an html only page that uses the description and cannot hide that one.

jfriend
Feb-16-2010, 04:40 PM
what changes could i make to this to isolate certain galleries. My issue is that I want to hide all of my galleries' album descriptions but have an html only page that uses the description and cannot hide that one.Already answered in your other thread.