Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1364757

    keith s
    Participant

    I used to use the code below that I found in this forum to create multi column layouts inside of accordions. It seems to not work like it did initially. I checked the site I used it on the first time and it is whacked out. I assume it was affected with new releases of the theme. Can you please look at the url below and tell me what I need to make it work? I would actually like 1/4 + 1/2 + 1/4 if possible.

    Thank you.

    <div id=”section”>
    <div class=”x-column x-sm x-1-3″>some content</div>
    <div class=”x-column x-sm x-1-3″>some content</div>
    <div class=”x-column x-sm x-1-3″>some content</div>
    </div>

    http://edgertonksdev.org/city-council/enacted-ordinances-and-resolutions/

    #1365319

    Friech
    Moderator

    Hi There,

    Thanks for writing in! That is not the proper markup actually, you should have the container instead of the section.

    <div class="x-container">
    <div class="x-column x-sm x-1-3">some content</div>
    <div class="x-column x-sm x-1-3">some content</div>
    <div class="x-column x-sm x-1-3">some content</div>
    </div>

    Hope it helps, Cheers!