body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
+ .nav-tabs.nav-stacked.affix > li.active > a {
+ background: #0088cc;
+ color: #ffffff;
+ }
</style>
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-responsive.min.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
{% for navorder in (0..100) %}
{% for p in site.pages %}
{% if p.navsection == page.navsection and p.navorder == navorder %}
- <li><a href="{{ site.baseurl }}{{ p.url }}" {% if p.url == page.url %} class="active"{% endif %} >{{ p.title }}</a></li>
+ <li {% if p.url == page.url %} class="active"{% endif %}><a href="{{ site.baseurl }}{{ p.url }}">{{ p.title }}</a></li>
{% endif %}
{% endfor %}
{% endfor %}