From f451515f1665b4581695e544bc5c4fa54511bb9b Mon Sep 17 00:00:00 2001 From: Vasco Lavos Date: Sun, 9 Apr 2023 01:33:35 +0100 Subject: [PATCH] Lower ad size --- quark2.css | 1 + quark2.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/quark2.css b/quark2.css index aef204f..a5231dd 100644 --- a/quark2.css +++ b/quark2.css @@ -482,6 +482,7 @@ a:not(.no-external)::after, .show-external::after { .ad-container { padding: 20px; + max-height: 200px; } .ad-container::before { diff --git a/quark2.js b/quark2.js index 28b1c40..9f0000d 100644 --- a/quark2.js +++ b/quark2.js @@ -165,7 +165,7 @@ function updateLazyImages() { function updateAds() { $('.active-category .ad-needs-loading').each(function(e) { var elm = $(this); - elm.html(''); + elm.html(''); (adsbygoogle = window.adsbygoogle || []).push({}); elm.removeClass('ad-needs-loading'); });