Browse Source

update /layouts/header.html template (reduce size of site header).

The <a> tag would stretch across the top of the page and it made it hard to
click in an 'empty' space on the page. It was, also, confusing when the page
would change to the home page when you were not paying attention whilst clicking.
stable
Craig Oates 2 years ago
parent
commit
15cc041700
  1. 5
      templates/layouts/header.html

5
templates/layouts/header.html

@ -110,8 +110,8 @@
</div> </div>
{% endif %} {% endif %}
<a class="fe-site-header" <div class="fe-site-header">
title="Click to view the site's home page" <a title="Click to view the site's home page"
href="/"> href="/">
{% ifequal system-data.first.enable-site-logo 1 %} {% ifequal system-data.first.enable-site-logo 1 %}
<img alt="{{system-data.first.site-name}}" <img alt="{{system-data.first.site-name}}"
@ -119,6 +119,7 @@
{% endifequal %} {% endifequal %}
<h1>{{system-data.first.site-name}}</h1> <h1>{{system-data.first.site-name}}</h1>
</a> </a>
</div>
<nav> <nav>
{% for page in system-data.last.first %} {% for page in system-data.last.first %}

Loading…
Cancel
Save