We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
You can click on the logo to go home but it would be nice if you could click on the text too.
The text was updated successfully, but these errors were encountered:
Solution is:
base.html
<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).
main.css
div.header a { color: black; }
Sorry, something went wrong.
No branches or pull requests
You can click on the logo to go home but it would be nice if you could click on the text too.
The text was updated successfully, but these errors were encountered: