Re: [css-d] image gallery question

2010-12-23 Thread Matthew P. Johnson
-Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of Brian M. Curran Sent: Tuesday, December 21, 2010 5:13 AM To: css-d@lists.css-discuss.org Subject: Re: [css-d] image gallery question On 12/20/10 5:04 PM, Matthew P

Re: [css-d] image gallery question

2010-12-21 Thread Brian M. Curran
On 12/20/10 5:04 PM, Matthew P. Johnson wrote: I am also looking for a better image gallery but the thing I do like about this gallery is that all I have to do to add images is resize the larger image and add a line of code and I am done so it works well for regular edits without having to run the

[css-d] image gallery question

2010-12-20 Thread Matthew P. Johnson
Happy Holidays to everyone J I am trying to figure out a way to have the thumbnails be a resize of the original image rather than a cropped section of the original image and also be able to format the larger image css so I can keep the border. I have been able to create resized thumbs

Re: [css-d] image gallery question

2010-12-20 Thread David Laakso
On 12/20/10 5:04 PM, Matthew P. Johnson wrote: Happy Holidays to everyone J Bah! Humbug! --- the thing I do like about this gallery is that all I have to do to add images is resize the larger image and add a line of code and I am done so it works well for regular edits without having to

Re: [css-d] Image gallery question

2009-08-06 Thread tedd
At 8:19 PM -0700 8/5/09, Debbie Roes wrote: I used box by Tedd (http://sperling.com/examples/box/) for the blue background and I am SO happy to have found that solution! It works great except for one thing (which is probably more about my poor coding than Ted's box!)... For the portrait-sized

Re: [css-d] Image gallery question

2009-08-06 Thread Debbie Roes
Tedd, When I view your site via Safari (have not tested with other browsers), the portrait images look great. However, the landscape images force a vertical (yes vertical) scroll bar. One would think that making the page wider would cause a horizontal scroll bar to appear, but instead a

Re: [css-d] Image gallery question

2009-08-06 Thread Tim Snadden
On 6/08/2009, at 5:26 PM, Debbie Roes wrote: #box { float: left; } /* will ensure that the box 'shrink-wraps' around you content. */ #wrapper { overflow: auto; } /* will ensure that your float is contained */ #footer { clear: both; } /* will ensure that your footer clears the floated

Re: [css-d] Image gallery question

2009-08-06 Thread Debbie Roes
Tim, A different approach... #mainGal { text-align: center; } #box { float: none; /* remove the float we added before */ display: inline-block; display: -moz-box; /* == for firefox 2 */ } To make inline-block work in IE8 you will need to use a conditional

Re: [css-d] Image gallery question

2009-08-06 Thread Michal Suchanek
Hello This site looks interesting. Quite simple but nice design. At first I wanted to ask if the links for changing the photo have to be JavaScript but I see that what you do cannot be done otherwise. Changing the photo for the first time takes very long but subsequent photo flipping is very

[css-d] Image gallery question

2009-08-05 Thread Debbie Roes
Hi All, Just finishing up a site for a photographer client. It doesn't work yet in IE6, so I may have some questions about that tomorrow. However, today's question has to do with the image gallery prototype: http://www.incline2000.com/awb/west1.html I used box by Tedd

Re: [css-d] Image gallery question

2009-08-05 Thread Tim Snadden
On 6/08/2009, at 3:19 PM, Debbie Roes wrote: Hi All, Just finishing up a site for a photographer client. It doesn't work yet in IE6, so I may have some questions about that tomorrow. However, today's question has to do with the image gallery prototype:

Re: [css-d] Image gallery question

2009-08-05 Thread Debbie Roes
Tim, #box { float: left; } /* will ensure that the box 'shrink-wraps' around you content. */ #wrapper { overflow: auto; } /* will ensure that your float is contained */ #footer { clear: both; } /* will ensure that your footer clears the floated box */