From 126c7a080b89c473a56a3772fed90fcd6cb09e43 Mon Sep 17 00:00:00 2001 From: ehpersonal38 <103586016+ehpersonal38@users.noreply.github.com> Date: Tue, 30 May 2023 13:07:04 -0400 Subject: [PATCH] #933 remove scrollbars on IE and Firefox --- homepage/index.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/homepage/index.php b/homepage/index.php index 160edf6..a3593f6 100644 --- a/homepage/index.php +++ b/homepage/index.php @@ -41,6 +41,10 @@ if ($sys_timezone !== "") { body::-webkit-scrollbar { display:none } +html{ + -ms-overflow-style: none; /* IE and Edge */ + scrollbar-width: none; /* Firefox */ +}