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

Your preferred username that is used when logging in.

Scrollable content instead of images Created Jul 20, 2010

This thread is solved

Views: 1147     Replies: 5     Last reply Aug 31, 2010  
You must login first before you can use this feature

mrivasa

Posts: 1

Registered:
Jul 20, 2010

Scrollable content instead of images

Posted: Jul 20, 2010

Hi,

I'm trying to implement scrollable content not only with images but with buttons, etc. Is kind of catalog, each item will have an image + product name + quantity and "add to order" button. So far no luck, is there any example with something like that?

Something like netflix, the scrolling movie titles.

Thanks.

schaudhary_91

Posts: 5

Registered:
Jun 22, 2010

» Scrollable content instead of images

Posted: Jul 22, 2010

Reply to: Scrollable content instead of images, from mrivasa
use the following HTML Content:

<div class="scrollable" id="browsable">
<div id="navButtons" class="navButtons">
< a class="prev browse left disabled">prev</a >
<div id="rightBack" class="right">
< a class="next browse right">next</a >
</div>
</div>
<div class="items" style="left: 0px;">
<div class="content">Image + product Name + quantity + add to order</div>
<div class="content">Image + product Name + quantity + add to order</div>
<div class="content">Image + product Name + quantity + add to order</div>
<div class="content">Image + product Name + quantity + add to order</div>
</div>
</div>

kdw1

Posts: 1

Registered:
Aug 2, 2010

html tags within scrollable items

Posted: Aug 2, 2010

Reply to: » Scrollable content instead of images, from schaudhary_91
Is it possible to have html tags within the scrollable elements?
Can't seem to get it to work and I want to have an image and formatted text in each scrollable element eg.

<div class="items">
<div class="content"><p>Image</p><p>Some text</p></div>
<div class="content"><p>Image</p><p>Some text</p></div>
<div class="content"><p>Image</p><p>Some text</p></div>
</div>

Thanks

lee.harris

Posts: 2

Registered:
May 6, 2010

Can anyone shed any light on this please?

Posted: Aug 30, 2010

Reply to: html tags within scrollable items, from kdw1
Like the OP, I'm working on the simple setup for scrollable but wish to add extra content to each scrollable item (e.g. a title, price, button, etc). Stumped how to do this :( Any guidance would be greatly appreciated. thx, Lee.

brandonwood

Posts: 3

Registered:
Aug 30, 2010

Set a width

Posted: Aug 30, 2010

Reply to: Can anyone shed any light on this please?, from lee.harris
Set a fixed-width for the nested elements and you should be in business. Otherwise, the nested elements width defaults to 100% of the container and you can only get 1 element at a time

Example here -http://flowplayer.org/tools/demos/scrollable/one-sized.htm

lee.harris

Posts: 2

Registered:
May 6, 2010

Set a width...

Posted: Aug 31, 2010

Reply to: Set a width, from brandonwood
...even in the context of the 'simple setup for scrollable' where the items are all visible within the container?