Tagged: x
-
AuthorPosts
-
February 9, 2017 at 2:22 pm #1364757
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/
February 9, 2017 at 8:56 pm #1365319Hi 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!
-
AuthorPosts