PDA

View Full Version : Why are my proof gallerys going......


jessicaj
Aug-20-2008, 12:53 PM
Can some one help

jfriend
Aug-20-2008, 01:53 PM
Can some one help me? I want all my proof gallerys to only be on my proof page But they are on my portfolio gallery page also. So how do I get them to only stay on the proof gallery page? Anyone?

What is the link to your site so we can see what you're talking about?

jessicaj
Aug-21-2008, 07:45 AM
url broken

Allen
Aug-21-2008, 08:00 AM
Can some one help me? I want all my proof gallerys to only be on my proof page But they are on my portfolio gallery page also. So how do I get them to only stay on the proof gallery page? Anyone?
Your galleries page is set to show galleries and not by categories so you see
all public galleries. If you change the link in your nav for galleries to
<li><a href="/Portfolio">Gallery</a></li>
It will show only those and not the ones in the Proofs category.

If you have other categories with galleries you want shown on the galleries
page you can show all and hide the proofs category by adding this to your
javascript. But you'll have to switch the "display by galleries" to "display by
categories".

<!-- Hide Categories -->
function delCategory() {
re = /\/(Proofs)$/;

var oList = YD.getElementsByClassName('miniBox', 'div', this);

for (i = 0; i < oList.length; i++) {
if (re.test(oList[i].getElementsByTagName('a')[0].href))
oList[i].parentNode.removeChild(oList[i]);
}
}
YE.onContentReady('categoriesBox', delCategory);
<!-- End Hide Categories -->

You do not need to create a duplicate homepage named proofs because you have a category with the same name.

if (hasPath("proofs"))YD.addClass(document.body, "proofs");

jfriend
Aug-21-2008, 08:06 AM
the link is www.randomphotographyandgraphicdesign.com (http://www.randomphotographyandgraphicdesign.com) Thanks

You have a choice on your galleries page to show all your galleries or your categories. You have it configured to show galleries and, by default, it will show all your galleries, no matter what category they are in.

There are probably many options here. The ones I can think of are:

Change your galleries page to show categories instead of individual galleries and then (using some Javascript) hide the proofs category (http://www.dgrin.com/showthread.php?t=99041) on the galleries page.
Hide each of the proofs galleries (using CSS) on the galleries page. This latter option would require that each time you add a new proofs gallery, you also add some new CSS to hide it from the galleries page. Hiding the proofs category from the galleries page would continue to work as you add new proofs galleries.
Make all proofs galleries unlisted (that will keep them from showing on the galleries page when not logged in). Then, create an HTML only page that manually lists each of the proofs galleries.

jessicaj
Aug-21-2008, 08:10 AM
Thank You Thank You!!!!! Sooooo much its fixed!!!! Now there is a little < showing up on my navbar between home and gallerys can you help with that?

Allen
Aug-21-2008, 08:12 AM
Thank You Thank You!!!!! Sooooo much its fixed!!!! Now there is a little < showing up on my navbar between home and gallerys can you help with that?
Remove the red from the nav html.

&lt;<li><a href="/Portfolio">Gallery</a></li>

or if your see this.

<<li><a href="/Portfolio">Gallery</a></li>

jessicaj
Aug-21-2008, 08:51 AM
Thank You Soooooooooooo much!!!!!