PDA

View Full Version : Need help with .shareHomepage and FAQ #18


DrDavid
Mar-15-2008, 06:26 AM
/* ================================================== == */
/* == FAQ #18, Line up boxes with titles underneath === */
/* ============== Current as of 13 Feb 07 ============= */
/* ================================================== == */
.miniBox {width:122px; text-align:center; height:210px; margin:0 28px;}
.miniBox .photo {float:none; width:122px; height:auto; _height:1px;}
.miniBox .albumTitle {width:122px;}
.miniBox .description {width:122px;}
.miniBox .updated {width:122px;}

.loggedIn .miniBox {height:auto; min-height:300px;}
.loggedIn .miniBox .smbuttons {margin:0 auto; width:122px;}
.loggedIn .miniBox input {width:122px;}
.loggedIn .miniBox textarea {width:112px;}

.boxBottom .albumLarge {width:192px; height:350px; text-align:center; margin:0 24px;}
.albumLarge .photoLarge {float:none; width:192px; height:auto; _height:1px;}
.albumLarge .albumTitle {width:192px;}
.albumLarge .description {width:192px;}
.albumLarge .updated {width:192px;}

.loggedIn .boxBottom .albumLarge {height:auto; min-height:450px;}
.loggedIn .albumLarge .smbuttons {margin:0 auto; width:192px;}
.loggedIn .albumLarge input {width:192px;}
.loggedIn .albumLarge textarea {width:182px;}
/* End FAQ #18 */

Basically, I want the same effect on the shareHomepage that I get on http://www.wolfsnap.com/galleries (4 across, and info underneath).

Can anyone help?

Thanks!
David

DrDavid
Mar-15-2008, 04:35 PM
Bump...

DrDavid
Mar-15-2008, 07:00 PM
Ok, I've played with this forever. It looks like it can't be done :( (at least, not by me).. So, alternatively... How can I block the four-accross layout for the shareHomepage? Is there an easy way to BLOCK CSS on a particular page? or do I have to override it by copying/pasting the default code from the SM CSS?

David

Allen
Mar-15-2008, 07:24 PM
Ok, I've played with this forever. It looks like it can't be done :( (at least, not by me).. So, alternatively... How can I block the four-accross layout for the shareHomepage? Is there an easy way to BLOCK CSS on a particular page? or do I have to override it by copying/pasting the default code from the SM CSS?

David
I just added the mini-box hack and it worked on my sharegroup page. I'ts
hard to troubleshoot without seeing the page.

richW
Mar-15-2008, 11:49 PM
I use something close to this:

#sharedGalleries .miniBox {
width:150px !important;
text-align:center;
height: 260px !important;
margin: 15px 0px 0px 31px !important;}

DrDavid
Mar-16-2008, 08:10 AM
Got it.. This is what FAQ#18 SHOULD look like:

/* ================================================== == */
/* == FAQ #18, Line up boxes with titles underneath === */
/* ============== Current as of 13 Feb 07 ============= */
/* ================================================== == */
.miniBox {width:122px; text-align:center; height:210px; margin:0 28px;}
.miniBox .photo {float:none; width:122px; height:auto; _height:1px;}
.miniBox .albumTitle {width:122px;}
.miniBox .description {width:122px;}
.miniBox .updated {width:122px;}

.loggedIn .miniBox {height:auto; min-height:300px;}
.loggedIn .miniBox .smbuttons {margin:0 auto; width:122px;}
.loggedIn .miniBox input {width:122px;}
.loggedIn .miniBox textarea {width:112px;}

.loggedIn #sharedGalleries .miniBox {width:122px; text-align:center; min-height:210px; margin:0 28px;}

.boxBottom .albumLarge {width:192px; height:350px; text-align:center; margin:0 24px;}
.albumLarge .photoLarge {float:none; width:192px; height:auto; _height:1px;}
.albumLarge .albumTitle {width:192px;}
.albumLarge .description {width:192px;}
.albumLarge .updated {width:192px;}

.loggedIn .boxBottom .albumLarge {height:auto; min-height:450px;}
.loggedIn .albumLarge .smbuttons {margin:0 auto; width:192px;}
.loggedIn .albumLarge input {width:192px;}
.loggedIn .albumLarge textarea {width:182px;}
/* End FAQ #18 */
Can someone fix the FAQ to correct the sharegroup bug in this FAQ? :thumb

David