all repos — website @ f8acc923560a4b3fde660256ae7b7a6f9688b306

My website

Move header link inside heading

Alan Pearce
commit

f8acc923560a4b3fde660256ae7b7a6f9688b306

parent

3d3ac02cf53695838eb149cc5c3a395fa4077db8

2 files changed, 6 insertions(+), 3 deletions(-)

changed files
M themes/bear/templates/header.htmlthemes/bear/templates/header.html
@@ -1,7 +1,9 @@
<header> - <a href="{{ config.base_url }}" class="title"> - <h2>{{ config.title }}</h2> - </a> + <h2> + <a href="{{ config.base_url }}" class="title"> + {{ config.title }} + </a> + </h2> <nav> {% include "nav.html" %} </nav>
M themes/bear/templates/style.htmlthemes/bear/templates/style.html
@@ -28,6 +28,7 @@ color: #3273dc;
} .title { + color: #222; text-decoration: none; border: 0; }