PDA

View Full Version : Its never finished is it?


DanielB
Mar-19-2006, 07:52 PM
site development never ends does it....lol

anyways heres what i'm wanting to do.

i really like how you have your thumbnails set-up andy, on
http://www.moonriverphotography.com/gallery/634980

how would i get mine like that? i looked at your CSS and saw alot of stuff about thumbnails and some stuff i kinda thought looked familiar that i could read...turns out i can't read it and had no idea what i was doing....


also, i'm still having trouble with my (position:absolute) gallery titles (http://dgrin.com/showthread.php?t=29481)being where they should be.

thanks for putting up with my attempts/failures at coding.:thumb

DavidTO
Mar-19-2006, 07:59 PM
site development never ends does it....lol



Welcome to life. One of the things I've learned. You're never done 'till you're dead. And there's so much to do.

Time for a nap.

Mike Lane
Mar-19-2006, 08:25 PM
site development never ends does it....lol

good god no.

anyways heres what i'm wanting to do.

i really like how you have your thumbnails set-up andy, on
http://www.moonriverphotography.com/gallery/634980

how would i get mine like that? i looked at your CSS and saw alot of stuff about thumbnails and some stuff i kinda thought looked familiar that i could read...turns out i can't read it and had no idea what i was doing....

That's not CSS, that's a smugmug feature. Look in the photo tools dropdown and find zoom thumbnail and set the zoom to 1:1. Voila.


also, i'm still having trouble with my (position:absolute) gallery titles (http://dgrin.com/showthread.php?t=29481)being where they should be.

thanks for putting up with my attempts/failures at coding.:thumb

C'mon man, you know we need a link :deal Show me where and what the problem is and I'll help you fix it:D

DavidTO
Mar-19-2006, 08:29 PM
C'mon man, you know we need a link :deal Show me where and what the problem is and I'll help you fix it:D


Yeah, then you'd be *finished*!

DanielB
Mar-20-2006, 06:29 PM
C'mon man, you know we need a link :deal Show me where and what the problem is and I'll help you fix it:D

its on all of my gallery titles, and i put a screenshot in that other thread.:thumb

Mike Lane
Mar-20-2006, 07:58 PM
its on all of my gallery titles, and i put a screenshot in that other thread.:thumb

Sorry, I'm not seeing a problem with a quick look-see at your site. :dunno If you've got a specific page that's messed up, that'd be great.

DanielB
Mar-20-2006, 08:22 PM
Sorry, I'm not seeing a problem with a quick look-see at your site. :dunno If you've got a specific page that's messed up, that'd be great.

http://standoutphoto.smugmug.com/Gallery/153625 for my landscapes i have 3 galleries, 1 is below the other 2 and it is w/o a title because the title is stacked on the gallery's name above it.

Mike Lane
Mar-20-2006, 08:33 PM
http://standoutphoto.smugmug.com/Gallery/153625 for my landscapes i have 3 galleries, 1 is below the other 2 and it is w/o a title because the title is stacked on the gallery's name above it.

Oh, I see. Add the red:

.box .boxBottom .albumLarge { /* this is the large thumbnail version */
height:auto; /* again for modern browsers */
min-height:200px; /* the large thumbnails are, well, taller; again will need to be taller for very long gallery titles*/
margin:20px 0 0; /* still want a bit of spacing */
padding:0; /* no padding required */
width:187px; /* this still gets us a row of 4 */
position:relative;
}

DanielB
Mar-21-2006, 02:53 PM
Oh, I see. Add the red:

.box .boxBottom .albumLarge { /* this is the large thumbnail version */
height:auto; /* again for modern browsers */
min-height:200px; /* the large thumbnails are, well, taller; again will need to be taller for very long gallery titles*/
margin:20px 0 0; /* still want a bit of spacing */
padding:0; /* no padding required */
width:187px; /* this still gets us a row of 4 */
position:relative;
}

:doh

Edit: i did it but now the titles aren't showing up at all:scratch

Mike Lane
Mar-21-2006, 03:25 PM
:doh

Edit: i did it but now the titles aren't showing up at all:scratch

So adjust the red :D

#galleriesBox .albumLarge .albumTitle {
position:relative;
width:343px;
text-align:center;
top:365px;
margin:0 auto;
}

DanielB
Mar-21-2006, 03:45 PM
So adjust the red :D

#galleriesBox .albumLarge .albumTitle {
position:relative;
width:343px;
text-align:center;
top:365px;
margin:0 auto;
}

i knew it would be seomthing to do with the margin pixels and such but i couldn't figure out which one it was. thanks mike:thumb

DanielB
Mar-21-2006, 03:52 PM
but sinceeee its never done, how do i get rid of the white rectangular boxes around my galleries when my mouse isn't over them?:dunno

Mike Lane
Mar-21-2006, 04:21 PM
Well right now you have this:

a:hover .imgBorder, .imgBorderOn {
border-color:black;
}

Which as far as I can tell is intended to hide your border when you hover over it. If you don't want a border at all why not do this?

.imgBorder,
a:hover .imgBorder, .imgBorderOn {
border:0;
}


That'll remove the border from the pics, hovered or otherwise on all your pics site-wide. You can of course limit that to specific pages with CSS.

DanielB
Mar-21-2006, 04:30 PM
Well right now you have this:

a:hover .imgBorder, .imgBorderOn {
border-color:black;
}

Which as far as I can tell is intended to hide your border when you hover over it. If you don't want a border at all why not do this?

.imgBorder,
a:hover .imgBorder, .imgBorderOn {
border:0;
}


That'll remove the border from the pics, hovered or otherwise on all your pics site-wide. You can of course limit that to specific pages with CSS.

i see...:nod

DanielB
Mar-23-2006, 06:18 PM
okay, one more thing, where in my coding does it talk about my background color:scratch so that i could make it white. if i so decided.

Mike Lane
Mar-23-2006, 09:49 PM
okay, one more thing, where in my coding does it talk about my background color:scratch so that i could make it white. if i so decided.

How about going into your cobranding and selecting light at the very top?

DanielB
Mar-24-2006, 01:55 PM
How about going into your cobranding and selecting light at the very top?

:doh


thanks mike, dk why i never noticed that before.