View Full Version : Need help on Owner/Viewer "box" display
agallia
Dec-16-2008, 08:10 AM
I need a bit of help. I have a duplicate .homepage called .galleries. All boxes are set to SHOW on .homepage which is what I want to see as Owner. What is CSS needed to do the following...
Owner .homepage: Show all "boxes".
Viewer .homepage: Show only #bioBox slideshow and #featuredBox.
Viewer .homepage #featuredBox: Hide album description and updated info.
Owner & Viewer .galleries: Show only #categoriesBox.
Viewer #categoriesBox: Hide description and updated info.
Viewer #galleriesBox (all galleries): Hide album description and updated info.SM team. Please feel free to look at my CSS. All else seems to be working as I want; just the issues above are causing my head to ache.
In Viewer mode, #categoriesBox displays on both .homepage and .galleries. I only want it shown on .galleries for Viewer.
Thanks.
Thanks.
agallia
Dec-18-2008, 01:33 PM
I need a bit of help. I have a duplicate .homepage called .galleries. All boxes are set to SHOW on .homepage which is what I want to see as Owner. What is CSS needed to do the following...
Owner .homepage: Show all "boxes".
Viewer .homepage: Show only #bioBox slideshow and #featuredBox.
Viewer .homepage #featuredBox: Hide album description and updated info.
Owner & Viewer .galleries: Show only #categoriesBox.
Viewer #categoriesBox: Hide description and updated info.
Viewer #galleriesBox (all galleries): Hide album description and updated info.SM team. Please feel free to look at my CSS. All else seems to be working as I want; just the issues above are causing my head to ache.
In Viewer mode, #categoriesBox displays on both .homepage and .galleries. I only want it shown on .galleries for Viewer.
Thanks.
Thanks. Bump, please. My main question is the last sentence. Thanks.
jfriend
Dec-18-2008, 01:51 PM
I need a bit of help. I have a duplicate .homepage called .galleries. All boxes are set to SHOW on .homepage which is what I want to see as Owner. What is CSS needed to do the following...
Owner .homepage: Show all "boxes".
Viewer .homepage: Show only #bioBox slideshow and #featuredBox.
Viewer .homepage #featuredBox: Hide album description and updated info.
Owner & Viewer .galleries: Show only #categoriesBox.
Viewer #categoriesBox: Hide description and updated info.
Viewer #galleriesBox (all galleries): Hide album description and updated info.SM team. Please feel free to look at my CSS. All else seems to be working as I want; just the issues above are causing my head to ache.
In Viewer mode, #categoriesBox displays on both .homepage and .galleries. I only want it shown on .galleries for Viewer.
Thanks.
Thanks.
I think you didn't get an answer because it wasn't easy to figure out exactly what all you were asking in 1-6. Quicker responses will come with simpler questions. You can ask follow on questions after your first answer. For your last question, you can make the categories box show only on the galleries page by using this CSS:
Add the line in red:
.notLoggedIn .homepage #breadCrumbTrail,
.notLoggedIn .homepage #shareGroups,
.notLoggedIn .homepage #mapBox,
.notLoggedIn .homepage #popularPhotos,
.notLoggedIn .homepage #communitiesBox,
.notLoggedIn .homepage #ffBox,
.notLoggedIn .homepage #keywordsBox,
.notLoggedIn .homepage #categoriesBox,
.notLoggedIn .homepage #altViews {
display: none;
}
And, then add this line to make it show on the galleries page:
.homepage.galleries #categoriesBox {display:block;}
For #5 and #6, you can hide description and updated with this CSS:
.notLoggedIn #categoriesBox .miniBox p.description, .notLoggedIn #categoriesBox .miniBox p.updated {display:none;}
For #3,
.notLoggedIn #featuredBox .miniBox p.description, .notLoggedIn #featuredBox .miniBox p.updated {display:none;}
agallia
Dec-18-2008, 05:13 PM
I think you didn't get an answer because it wasn't easy to figure out exactly what all you were asking in 1-6. Quicker responses will come with simpler questions. You can ask follow on questions after your first answer. For your last question, you can make the categories box show only on the galleries page by using this CSS:
Add the line in red:
.notLoggedIn .homepage #breadCrumbTrail,
.notLoggedIn .homepage #shareGroups,
.notLoggedIn .homepage #mapBox,
.notLoggedIn .homepage #popularPhotos,
.notLoggedIn .homepage #communitiesBox,
.notLoggedIn .homepage #ffBox,
.notLoggedIn .homepage #keywordsBox,
.notLoggedIn .homepage #categoriesBox,
.notLoggedIn .homepage #altViews {
display: none;
}
And, then add this line to make it show on the galleries page:
.homepage.galleries #categoriesBox {display:block;}
For #5 and #6, you can hide description and updated with this CSS:
.notLoggedIn #categoriesBox .miniBox p.description, .notLoggedIn #categoriesBox .miniBox p.updated {display:none;}
For #3,
.notLoggedIn #featuredBox .miniBox p.description, .notLoggedIn #featuredBox .miniBox p.updated {display:none;}
Sorry I messed up on the way I asked my questions. Seemed like it was clear to me. Your answers worked fine. Thanks.
vBulletin® v3.8.5, Copyright ©2000-2012, Jelsoft Enterprises Ltd.