From b54dcce0b4c4100713955cc7a5838b624b150326 Mon Sep 17 00:00:00 2001 From: Ian Lee <lee1001@llnl.gov> Date: Wed, 11 Oct 2017 08:30:17 -0700 Subject: [PATCH] Pull left / right arrows in episode nav to outside of row --- _includes/episode_navbar.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_includes/episode_navbar.html b/_includes/episode_navbar.html index 3bee002..c2bc80e 100644 --- a/_includes/episode_navbar.html +++ b/_includes/episode_navbar.html @@ -3,7 +3,7 @@ {% endcomment %} <div class="row"> <div class="col-xs-1"> - <h3> + <h3 class="text-left"> {% if page.previous.url %} <a href="{{ page.root }}{{ page.previous.url }}"><span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span><span class="sr-only">previous episode</span></a> {% else %} @@ -17,7 +17,7 @@ {% endif %} </div> <div class="col-xs-1"> - <h3> + <h3 class="text-right"> {% if page.next.url %} <a href="{{ page.root }}{{ page.next.url }}"><span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span><span class="sr-only">next episode</span></a> {% else %} -- GitLab