• Resolved bsapaka

    (@bsapaka)


    I was wondering if this is possible. The reason being I have long excerpts that push the rest of the expand elements down. I would like them all to remain above the expanded material.

    something like this:

    >Element 1
    >Element 2 (expanded)
    >Element 3
    
    -------------------
    Element 2 content shows here

    With this I would hope to make the collpasomatic elements inline.

    https://www.ads-software.com/plugins/jquery-collapse-o-matic/

Viewing 1 replies (of 1 total)
  • Plugin Author Baden

    (@baden03)

    Hello. For this you will want to use the roll-your-own method something like:

    <div class="collapseomatic" title="Element 1" id="elm1" >Element 1</div>
    <div class="collapseomatic" title="Element 2" id="elm2" >Element 2</div>
    <div class="collapseomatic" title="Element 3" id="elm3" >Element 3</div>
    
    <div id="target-elm1" class="collapseomatic_content">Element 1 content shows here</div>
    <div id="target-elm2" class="collapseomatic_content">Element 2 content shows here</div>
    <div id="target-elm3" class="collapseomatic_content">Element 3 content shows here</div>
Viewing 1 replies (of 1 total)
  • The topic ‘make content expand below other elements’ is closed to new replies.