From 0e410f69acbd3ff9536ad78dcac4b2b5852924ca Mon Sep 17 00:00:00 2001 From: Sebastian Klatte <sebastianklatte@gmx.net> Date: Sat, 16 Jan 2016 16:55:53 +0100 Subject: [PATCH] Fix active Home tab in narrow-jumbotron example the active class should be moved from the list item to the link item --- docs/examples/narrow-jumbotron/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/examples/narrow-jumbotron/index.html b/docs/examples/narrow-jumbotron/index.html index 210daf5f77..fc55d06488 100644 --- a/docs/examples/narrow-jumbotron/index.html +++ b/docs/examples/narrow-jumbotron/index.html @@ -24,8 +24,8 @@ <div class="header clearfix"> <nav> <ul class="nav nav-pills pull-xs-right"> - <li class="nav-item active"> - <a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a> + <li class="nav-item"> + <a class="nav-link active" href="#">Home <span class="sr-only">(current)</span></a> </li> <li class="nav-item"> <a class="nav-link" href="#">About</a> -- GitLab