codespeed
codespeed copied to clipboard
Make site title text clickable
You can click on the logo to go home but it would be nice if you could click on the text too.
Solution is:
- Edit
base.htmlfrom
<a href="{% url 'home' %}">
{% block logo %}
<img src="{% static 'images/logo.png' %}" height="48" alt="logo"/>
{% endblock logo %}
</a>
<h2>{% block page_title %}SPEED CENTER{% endblock page_title %}</h2>
To
<a href="{% url 'home' %}">
{% block logo %}
<img src="{% static 'images/logo.png' %}" height="48" alt="logo"/>
{% endblock logo %}
<h2>{% block page_title %}SPEED CENTER{% endblock page_title %}</h2>
</a>
(The indentation is a bit wrong there anyway).
- The link is blue by default so edit
main.cssand add
div.header a {
color: black;
}