Results 1 to 3 of 3

Thread: Mulitple pieces of content within a slide

  1. #1
    Join Date
    Oct 2005
    Posts
    6
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Mulitple pieces of content within a slide

    1) Script Title: Featured Content Glider

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...tentglider.htm

    3) Describe problem: Displaying more than one piece of content per slide.


    I am pulling my content in through an external page which will be built thru form submissions. For this example lets say I have 4 pieces of content.

    Foo1, Foo2, Foo3 and Foo4

    Ideally what I would like to see is the starting slide contain 3 pieces of content:
    Foo1
    <br>
    Foo2
    <br>
    Foo3

    When the slide changes, the display is
    Foo2
    <br>
    Foo3
    <br>
    Foo4

    then loop back for the next slide:
    Foo3
    <br>
    Foo4
    <br>
    Foo1


    Im very much a novice, so please be easy with me.

    Any thoughts?

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Hmm I don't see an easy way for the script to show overlapping contents in each slide (ie: slide1 contains A, B, C, slide2 contains B,C,D, with B overlapping). You can show multiple contents per slide easily, with no overlap, just by adding those contents all within the same DIV element with CSS class "glidecontent":

    Code:
    <div class="glidecontent">
    A
    B
    C
    </div>
    
    <div class="glidecontent">
    D
    </div>

  3. #3
    Join Date
    Oct 2005
    Posts
    6
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Thanks for the quick reply. Thats what my 'Plan B' is.

    I appreciate any other help. Thanks guys!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •