From 9a68fcdac989383c75a4f8c11c00cb902e80a6ec Mon Sep 17 00:00:00 2001 From: jklingen Date: Mon, 2 Jan 2017 21:09:54 +0100 Subject: [PATCH] Fixed display of prev/next links in blog posts --- css/main.css | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/css/main.css b/css/main.css index 4efa96907..7466c0cac 100755 --- a/css/main.css +++ b/css/main.css @@ -119,6 +119,26 @@ .servicelinks a { color:#666; } + + /* blog prev/next */ + ul.pager { + list-style-type: none; + margin:0; + padding:0; + } + ul.pager i.fa { + font-family: 'FontAwesome' + } + ul.pager li.previous { + display:inline; + } + ul.pager li.next { + display:inline; + float:right + } + ul.pager a { + text-decoration: none; + } @@ -314,4 +334,4 @@ .ad-skyscraper .ad-skyscraper-wrapper { width: 80%; } - } \ No newline at end of file + }