Re: [css-d] CLICK ON THUMBNAIL TO SHOW LARGER IMAGE ON THE SIDE

2007-06-14 Thread Luc
Good afternoon ochieng', 
It was foretold that on 14/6/2007 @ 12:34:35 GMT+0300 (which was
06:34:35 where I live) ochieng' nelson would write:



> Thanks much Luc. This is not exactly it for now but am sure your solution
> here should surely help me much next time.  

You're welcome :-)

-- 
Best regards,
 Luc
_

Powered by The Bat! version 3.99.3 with Windows XP (build 2600),
version 5.1 Service Pack 2 and using the best browser: Opera.

"Drive carefully. It's not only cars that can be recalled by their
maker." 


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] CLICK ON THUMBNAIL TO SHOW LARGER IMAGE ON THE SIDE

2007-06-14 Thread ochieng' nelson
Thanks much Luc. This is not exactly it for now but am sure your solution
here should surely help me much next time. Thanks again.

On 6/13/07, Luc <[EMAIL PROTECTED]> wrote:
>
> Good afternoon ochieng',
> It was foretold that on 13/6/2007 @ 10:48:52 GMT+0300 (which was
> 04:48:52 where I live) ochieng' nelson would write:
>
> 
>
> > I should like  to create a gallery show where you click on the thumbnail
> to
> > show larger image on the side, using css.
> > Any help towards that?
>
> I've done something like that a long time ago, but it uses on hover
> instead of clicking.
>
> http://www.dzinelabs.com/Pages/template_magenta.php
>
> http://www.dzinelabs.com/Stylesheets/magenta.css
>
> You're welcome to check it out but unfortunately i can't remember very
> well how i did it (been out of the css scene for a long time)
>
>
> --
> Best regards,
> Luc
> _
>
> Powered by The Bat! version 3.99.3 with Windows XP (build 2600),
> version 5.1 Service Pack 2 and using the best browser: Opera.
>
> "When you argue with a fool, chances are he is doing just the same."
>
>
> __
> css-discuss [EMAIL PROTECTED]
> http://www.css-discuss.org/mailman/listinfo/css-d
> IE7 information -- http://css-discuss.incutio.com/?page=IE7
> List wiki/FAQ -- http://css-discuss.incutio.com/
> Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
>
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] CLICK ON THUMBNAIL TO SHOW LARGER IMAGE ON THE SIDE

2007-06-13 Thread William Gaffga
I think this is what you want. A clickable photo gallery, pure CSS.
Yes, it can be done.
http://www.cssplay.co.uk/menu/gallery_click.html

 On 6/13/07, ochieng' nelson <[EMAIL PROTECTED]> wrote:
>  I should like  to create a gallery show where you click on the thumbnail to
> show larger image on the side, using css. My page is:
> gilroy.50webs.com/accommodationpage.html
> Any help towards that?
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] CLICK ON THUMBNAIL TO SHOW LARGER IMAGE ON THE SIDE

2007-06-13 Thread Daniel Hammond
|
|
|> I should like  to create a gallery show where you click on the thumbnail to
|> show larger image on the side, using css.
|> Any help towards that?


you can use iframes to get your desired effect. no javascript needed. just css 
and html. you can see how i've used it on my photography page: 
www.objectivedesigns.com/photography.htm

let me know if you need any more assistance than what exploring my code gives 
you.

Daniel Hammond
2227 Dunseath Ave.
Atlanta, GA 30318
770-842-8817
www.objectivedesigns.com
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] CLICK ON THUMBNAIL TO SHOW LARGER IMAGE ON THE SIDE

2007-06-13 Thread Luc
Good afternoon ochieng', 
It was foretold that on 13/6/2007 @ 10:48:52 GMT+0300 (which was
04:48:52 where I live) ochieng' nelson would write:



> I should like  to create a gallery show where you click on the thumbnail to
> show larger image on the side, using css.
> Any help towards that?

I've done something like that a long time ago, but it uses on hover
instead of clicking.

http://www.dzinelabs.com/Pages/template_magenta.php

http://www.dzinelabs.com/Stylesheets/magenta.css

You're welcome to check it out but unfortunately i can't remember very
well how i did it (been out of the css scene for a long time)

 
-- 
Best regards,
 Luc
_

Powered by The Bat! version 3.99.3 with Windows XP (build 2600),
version 5.1 Service Pack 2 and using the best browser: Opera.

"When you argue with a fool, chances are he is doing just the same." 


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] CLICK ON THUMBNAIL TO SHOW LARGER IMAGE ON THE SIDE

2007-06-13 Thread Shelly
 >>to create a gallery show where you click on the thumbnail to
show larger image on the side, using css<<

Can't do that - not with CSS.  CSs can handle hover events, but it can't 
do things on user events (like clicking).  CSS is a stylesheet - not a 
script.

If you want it "onclick", then you need to use a script (like 
javascript).  But if you can live with "on hover", you can use CSS:

http://anekostudios.com/2006/05/07/disjointed-rollovers/

Hope that helps you!

~Shelly
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Click on thumbnail to show larger image on the side

2007-06-13 Thread Roger Roelofs

On Jun 13, 2007, at 3:48 AM, ochieng' nelson wrote:

> I should like  to create a gallery show where you click on the  
> thumbnail to
> show larger image on the side, using css. My page is:
> gilroy.50webs.com/accommodationpage.html

Thanks for the url.  You will need javascript to accomplish that  
task.  I've been enjoying the jQuery javascript library lately  
.  It makes this kind of thing very easy.

Theoretically, css controls how the page looks, and javascript  
controls how the page behaves.  The :hover pseudo-class kind of  
breaks that paradigm, but it's _so_ handy.

Roger,
-- 
Roger Roelofs
[EMAIL PROTECTED]



__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] CLICK ON THUMBNAIL TO SHOW LARGER IMAGE ON THE SIDE

2007-06-13 Thread ochieng' nelson
I should like  to create a gallery show where you click on the thumbnail to
show larger image on the side, using css. My page is:
gilroy.50webs.com/accommodationpage.html
Any help towards that?
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/