PDA

View Full Version : How to switch gallery positions...


KyTom
Apr-28-2008, 08:44 AM
Hello, I have added a subcatergory to a couple of categories, (archived portraits in the portraits category). The subcatergory shows up at the top of the page and the current galleries show up below the subcategory. Is there a way to switch how they appear? I would like my most current galleries to show up above the subcategories. Any help/info is always appreciated.

richW
Apr-28-2008, 11:12 AM
Hello, I have added a subcatergory to a couple of categories, (archived portraits in the portraits category). The subcatergory shows up at the top of the page and the current galleries show up below the subcategory. Is there a way to switch how they appear? I would like my most current galleries to show up above the subcategories. Any help/info is always appreciated.Check this post out to see if it's what you are looking for: http://www.dgrin.com/showpost.php?p=331434&postcount=7


In the header javascript section:
function swapBoxes() {
bodyClass = document.getElementsByTagName("body")[0].className;
if (bodyClass.indexOf("category") != -1)
{
box1 = document.getElementById("subcategoriesBox");
box2 = document.getElementById("galleriesBox");

if (box1 && box2)
{
swap = box1.innerHTML;
box1.innerHTML = box2.innerHTML;
box2.innerHTML = swap;
}
}
}

In the footer javascript section:

swapBoxes();

KyTom
Apr-28-2008, 11:34 AM
Check this post out to see if it's what you are looking for: http://www.dgrin.com/showpost.php?p=331434&postcount=7


In the header javascript section:
function swapBoxes() {
bodyClass = document.getElementsByTagName("body")[0].className;
if (bodyClass.indexOf("category") != -1)
{
box1 = document.getElementById("subcategoriesBox");
box2 = document.getElementById("galleriesBox");

if (box1 && box2)
{
swap = box1.innerHTML;
box1.innerHTML = box2.innerHTML;
box2.innerHTML = swap;
}
}
}

In the footer javascript section:

swapBoxes();

Rich.....BRILLANT!!!!
Thank you SOOOOO much.

Crystal Clear Photography
Jun-25-2008, 08:44 AM
it works great except it messes with my square gallery thumbs code....it squares the subcategory at the bottom instead...is there anyway to square them both??