diff --git a/src/data/templates/gramps-base.html b/src/data/templates/gramps-base.html
index 5620183cb..9ff3d1ae4 100644
--- a/src/data/templates/gramps-base.html
+++ b/src/data/templates/gramps-base.html
@@ -14,7 +14,6 @@
{% block css %}
-
@@ -22,16 +21,16 @@
{% endblock %}
-
+
{% block navigation %}
- - Home
+ - Home
{% for view in views %}
- - {{view.0}}
+ - {{view.0}}
{% endfor %}
{% if user.is_authenticated %}
- Reports
diff --git a/src/web/grampsdb/templatetags/my_tags.py b/src/web/grampsdb/templatetags/my_tags.py
index 4b129d308..0e142da6f 100644
--- a/src/web/grampsdb/templatetags/my_tags.py
+++ b/src/web/grampsdb/templatetags/my_tags.py
@@ -106,8 +106,8 @@ register.filter('missing', missing)
def currentSection(view1, view2):
if view1.strip().lower() == view2.strip().lower():
- return "CurrentSection"
- return "OtherSection"
+ return "class=CurrentSection"
+ return ""
currentSection.is_safe = True
register.filter('currentSection', currentSection)