diff --git a/edivorce/apps/core/templates/partials/tooltips/base.html b/edivorce/apps/core/templates/partials/tooltips/base.html
index 516665e9..ca7de99b 100644
--- a/edivorce/apps/core/templates/partials/tooltips/base.html
+++ b/edivorce/apps/core/templates/partials/tooltips/base.html
@@ -1,5 +1,7 @@
{% if text %}{{ text }}{% else %}{% block label %}{% endblock %}{% endif %}
-
\ No newline at end of file
+ {% block inner %}{% endblock %}">
+ {% block label %}{% endblock %}
+
+
\ No newline at end of file
diff --git a/edivorce/apps/core/templates/partials/tooltips/legally_married.html b/edivorce/apps/core/templates/partials/tooltips/legally_married.html
index 6725e2ee..17ef1c6c 100644
--- a/edivorce/apps/core/templates/partials/tooltips/legally_married.html
+++ b/edivorce/apps/core/templates/partials/tooltips/legally_married.html
@@ -15,5 +15,5 @@
{% endblock %}
{% block label %}
- Legally married
+ {% if text %}{{ text }}{% else %}Legally married{% endif %}
{% endblock %}
\ No newline at end of file
diff --git a/edivorce/apps/core/templates/partials/tooltips/marriage_like.html b/edivorce/apps/core/templates/partials/tooltips/marriage_like.html
index 3aaa20fc..12aa5601 100644
--- a/edivorce/apps/core/templates/partials/tooltips/marriage_like.html
+++ b/edivorce/apps/core/templates/partials/tooltips/marriage_like.html
@@ -11,5 +11,5 @@
{% endblock %}
{% block label %}
- marriage like
+ {% if text %}{{ text }}{% else %}marriage like{% endif %}
{% endblock %}
\ No newline at end of file