From 7651135db8387cb838592b14dd5cbceb98e5de45 Mon Sep 17 00:00:00 2001 From: Laury GvR Date: Wed, 15 Oct 2014 10:15:54 -0400 Subject: [PATCH] Title underlines on non-frontpages --- css/app.css | 6 +++--- front-page.php | 9 +++++---- scss/site/_structure.scss | 5 +++-- 3 files changed, 11 insertions(+), 9 deletions(-) diff --git a/css/app.css b/css/app.css index 5be640d..7b2b024 100644 --- a/css/app.css +++ b/css/app.css @@ -5851,9 +5851,9 @@ aside#sidebar a { color: #f48228; font-weight: bold; } -/*article header h1 { - border-bottom: solid 1px $secondary-color; -}*/ +article header h1 { + border-bottom: solid 1px #f48228; } + article h2 { color: #0568b3; } diff --git a/front-page.php b/front-page.php index cb38176..76cebc0 100644 --- a/front-page.php +++ b/front-page.php @@ -16,10 +16,11 @@ get_header(); ?>
id="post-">
- -

- -

+ + the_title(); + "; + } ?>
diff --git a/scss/site/_structure.scss b/scss/site/_structure.scss index b8b71f3..4b8f025 100644 --- a/scss/site/_structure.scss +++ b/scss/site/_structure.scss @@ -315,9 +315,9 @@ aside#sidebar a { color: $secondary-color; font-weight: bold; } -/*article header h1 { +article header h1 { border-bottom: solid 1px $secondary-color; -}*/ +} article h2 { color: $primary-color; } @@ -551,6 +551,7 @@ article h2 { } #homepage_problem_solvers { text-align:center; + } #homepage_gallery { text-align:center; -- 2.17.1