I want to make my sidebar fixed on mouse scroll .Exactly like t3 documentation page for your reference check below link
http://t3-framework.org/documentation/bs3-customization#layout-width
Hi,
Please try to remove the JS, the JS is to make the progressive effect. That means in the tutorials, ignore the step: "Then, we add some JavaScript"
Gardner.
<div class="doc-container row">
<div class="doc-sidebar col-md-3">
<ul class="affix doc-nav nav nav-list">
<li><a href="#section-1">Section 1</a></li>
<li><a href="#section-2">Section 2</a></li>
<li><a href="#section-3">Section 3</a></li>
</ul>
</div>
<div class="doc-content col-md-9">
<section id="section-1">
<h3>Section 1</h3>
<p>Section 1 content here.</p>
...
</section>
<section id="section-2">
<h3>Section 2</h3>
<p>Section 2 content here.</p>
...
</section>
<section id="section-3">
<h3>Section 3</h3>
<p>Section 3 content here.</p>
...
</section>
</div>
</div>
.doc-nav.affix {
top: 200px;
bottom: 200px;
}