From 86fda707185fe62a5a677c3a6f6757450b6a44e9 Mon Sep 17 00:00:00 2001 From: Aadil Ayub Date: Thu, 13 Jan 2022 15:18:00 +0500 Subject: [PATCH] hide border on next page arrow --- themes/lumbung-theme/static/css/main.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/themes/lumbung-theme/static/css/main.css b/themes/lumbung-theme/static/css/main.css index 0ab6a85..e39a288 100644 --- a/themes/lumbung-theme/static/css/main.css +++ b/themes/lumbung-theme/static/css/main.css @@ -663,6 +663,17 @@ li.page-item:last-child::after { display: none; } +li.page-item:nth-last-child(2) { + border: none; + text-decoration: none; +} + +li.page-item:nth-last-child(2)::before, +li.page-item:nth-last-child(2)::after { + display: none; +} + + li.page-item a { text-decoration: none; }