I have an OctoberCMS site and I am trying to hide a sidebar in a collapsible list so that when viewed on mobile the list item will be collapsed. When not on mobile I'm looking for it to be expanded as in the example below:
http://codepen.io/anon/pen/GoqPJj
The code is below:
<div class="container">
<div class="row">
<div class="col s12 m6">
<ul class="collapsible" data-collapsible="accordion">
<li>
<div class="collapsible-header active"><i class="material-icons">filter_drama</i>First</div>
<div class="collapsible-body">
<p>Lorem ipsum dolor sit amet.</p>
</div>
</li>
</ul>
</div>
<div class="col s12 m6">
This is the main page content. Here is some more content, and here is some even more content. It never seems to end as I add random text. Just one more sentence to make it a bit more complete.
</div>
</div>
</div>
Does anyone know how I can edit the above example to produce the desired outcome?