From 740001f09bb6da6d8fe09095f17f8ca930759d01 Mon Sep 17 00:00:00 2001 From: "russell@unturf.com" Date: Mon, 9 Feb 2026 10:52:45 -0500 Subject: [PATCH] Fix radio highlight not updating on subscribe page, default to None Replace display:none on radio inputs with visually-hidden technique (position:absolute, opacity:0) so :checked pseudo-class updates reliably when clicking labels. Default frequency changed to None. --- make_post_sell/templates/subscribe.j2 | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/make_post_sell/templates/subscribe.j2 b/make_post_sell/templates/subscribe.j2 index 1897234..a074396 100644 --- a/make_post_sell/templates/subscribe.j2 +++ b/make_post_sell/templates/subscribe.j2 @@ -15,7 +15,11 @@ cursor: pointer; } .subscribe-form input[type="radio"] { - display: none; + position: absolute; + opacity: 0; + width: 0; + height: 0; + pointer-events: none; } .subscribe-form input[type="radio"]:checked + label.freq-option { border-color: var(--blue-color, #5871ad); @@ -108,13 +112,13 @@

- + - +