How to make sidebar always visible in the Semantic UI

emix picture emix · Jan 22, 2014 · Viewed 12.4k times · Source

How to make sidebar always visible in the Semantic UI? Simply adding the "active" css class works, but messes up page layout.

There is a working example on jsFiddle.

Answer

Jan picture Jan · Nov 10, 2015

This has been officially fixed.

<div class="ui vertical inverted left visible sidebar menu"> 
  <a class="item">
    <i class="home icon"></i>
    Home
  </a>
  <a class="item">
    <i class="block layout icon"></i>
    Topics
  </a>
</div>
<div class="pusher">This is some content.</div>