Options

Galleries disappeared!

kevin2ikevin2i Registered Users Posts: 3 Beginner grinner
edited April 22, 2007 in SmugMug Support
My pages were working fine, then I uploaded a new gallery and now my galleries have disappeared from my control panel. I have them turned off, so they don't appear on my home page. The only entry in control panel is "galleries" and the display/hide option. They will display on my homepage if I select 'show' (not what I want) so they still exist. Is there a small limit to the number of galleries displayed on the control panel?


I have a galleries pages setup, but can't get galleries to display on only the galleries page not the home page. The problem just popped up, and I didn't change the css code ...

#my_banner {
width: 770px;
height: 144px;
margin: 0 auto;
background: url(http://www.revolvewear.com/smugmug/bannersmall_770x144.jpg) no-repeat;
}
.category_Kevin__Bill #my_banner {
display: block;
margin-left:auto;
margin-right:auto;
background: url(http://www.revolvewear.com/smugmug/bannerfire.jpg)
no-repeat;
}
/* hides your name (including any 's) */
#userName {
display: none;
}
/* hides the word home */
#userHome {
display: none;
}
/* breadcrumb removal */
#breadcrumb {visibility: hidden;}
#altViews {visibility: visible;}
.loggedIn #breadcrumb {visibility: visible;}
.category_Kevin__Bill #breadcrumb {visibility: visible;
}
/* hides slideshow-feeds-keywords */
.play_slideshow {
display: none;
}
#feeds { display:none
}
#photoKeywords {
display: none;
}
.gallery_Buy Sell Trade .pageNav {
display: none;
}
/*hides location */
.gallery_Location .pageNav {
display: none;
}
.gallery_Specials .pageNav {
display: none;
}
.homepage #galleryTitle {
display: none;
}
/* hides category */
#categoriesBox .boxTop {
display: none;
}
/*nav bar */
#navcontainer ul {
margin: 0;
padding: .5em;
list-style-type: none;
text-align: center;
}
#navcontainer ul li {
display: inline;
}
#navcontainer ul li a {
text-decoration: none;
padding: .2em 2.5em;
color: #ffffff;
background-color: #336600;
}
#navcontainer ul li a:hover {
color: #fff;
background-color: #33ff00;
}
.category_Kevin__Bill #navcontainer ul li {
display: none;
}
.category_Kevin__Bill #play_slideshow {
display: on;
}
.homepage #galleriesBox,
.homepage #categoriesBox,
.homepage #featuredBox {
display: block;
}
.galleries #bioBox {
display: none;
}
.galleries #galleriesBox,
.galleries #categoriesBox,
.galleries #featuredBox {
display: block;
}
.loggedIn .homepage #galleriesBox,
.loggedIn .homepage #categoriesBox {
display: block;
}

Comments

  • Options
    AllenAllen Registered Users Posts: 10,012 Major grins
    edited April 22, 2007
    kevin2i wrote:
    My pages were working fine, then I uploaded a new gallery and now my galleries have disappeared from my control panel. I have them turned off, so they don't appear on my home page. The only entry in control panel is "galleries" and the display/hide option. They will display on my homepage if I select 'show' (not what I want) so they still exist. Is there a small limit to the number of galleries displayed on the control panel?


    I have a galleries pages setup, but can't get galleries to display on only the galleries page not the home page. The problem just popped up, and I didn't change the css code ...

    ...
    .homepage #galleriesBox,
    .homepage #categoriesBox,
    .homepage #featuredBox {
    display: block;
    }
    .galleries #bioBox {
    display: none;
    }
    .galleries #galleriesBox,
    .galleries #categoriesBox,
    .galleries #featuredBox {
    display: block;
    }
    .loggedIn .homepage #galleriesBox,
    .loggedIn .homepage #categoriesBox {
    display: block;
    }
    You must click display in your control panel for galleries to show.
    Change this to none in your CSS to remove from your homepage.

    .homepage #galleriesBox,
    .homepage #categoriesBox,
    .homepage #featuredBox {
    display: none;
    }
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • Options
    kevin2ikevin2i Registered Users Posts: 3 Beginner grinner
    edited April 22, 2007
    thanks
    Allen wrote:
    You must click display in your control panel for galleries to show.
    Change this to none in your CSS to remove from your homepage.

    .homepage #galleriesBox,
    .homepage #categoriesBox,
    .homepage #featuredBox {
    display: none;
    }

    Thanks-
    It's working (galleries on gallery page and showing when logged in). Not sure why they disappeared from the control panel page (when turned off) - but this will work.

    Kevin.
Sign In or Register to comment.