You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Thumbnail Links in Scrollbar doesn" t work Created Apr 23, 2010

This thread is solved

Views: 1065     Replies: 1     Last reply Apr 23, 2010  
You must login first before you can use this feature

mardl

Posts: 2

Registered:
Apr 23, 2010

Thumbnail Links in Scrollbar doesn" t work

Posted: Apr 23, 2010

hi,

i used the stand alone demo to show what i mean.

i changed still

<img src="http://farm4.static.flickr.com/3629/3323896446_3b87a8bf75_t.jpg" />
to

<a href=""><img src="http://farm4.static.flickr.com/3629/3323896446_3b87a8bf75_t.jpg" /></a>

the version with a href scroll into nirvana!

i used the stand alone demo fromhttp://static.flowplayer.org/tools/demos/scrollable/index.htm

my demo is here:http://www.dreiwerken.de/projekte/testscroll.html
for both gallery i used
$("div.scrollable").scrollable({size: 5, clickable : false}).mousewheel();

in older version from jqeury.tools.scrollable it works fine, but i want to go to newest.

please help
Mardl

sorry abbout my maybe bad english

mardl

Posts: 2

Registered:
Apr 23, 2010

» Thumbnail Links in Scrollbar doesn" t work

Posted: Apr 23, 2010

Reply to: Thumbnail Links in Scrollbar doesn" t work, from mardl
i solved it.

found an example that workhttp://flowplayer.org/tools/demos/combine/scrollable-gallery-with-tooltips.html

the only different ist, that i have to override the styles:


<style>
/* remove margins from the image */
.items img {
	margin:0;
}

/* make A tags our floating scrollable items */
.items a {
	display:block;
	float:left;
	margin:20px 15px;
} 

</style>

maybe it helps anyone else ;-)

mardl