From 7f3d8405feb0754d5484c0bd4806d490cadd44f2 Mon Sep 17 00:00:00 2001 From: hyzen Date: Sun, 21 Jun 2026 03:27:43 +0530 Subject: [PATCH] Fix: hide hash anchor --- docs/css/custom.css | 9 +++++++++ static/css/custom.css | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/docs/css/custom.css b/docs/css/custom.css index a841f4b..b8e7196 100644 --- a/docs/css/custom.css +++ b/docs/css/custom.css @@ -1541,3 +1541,12 @@ th { border: 1px solid var(--foreground-color); color: var(--foreground-color); } + +/* Hide the "#" anchor link the theme appends after every heading + (blog, services, uninotes, homepage), including the theme's + :hover reveal. The heading id stays in place for deep-linking; + only the visible "#" is removed. */ +.heading .heading__anchor, +.heading:hover > .heading__anchor { + display: none; +} diff --git a/static/css/custom.css b/static/css/custom.css index a841f4b..b8e7196 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -1541,3 +1541,12 @@ th { border: 1px solid var(--foreground-color); color: var(--foreground-color); } + +/* Hide the "#" anchor link the theme appends after every heading + (blog, services, uninotes, homepage), including the theme's + :hover reveal. The heading id stays in place for deep-linking; + only the visible "#" is removed. */ +.heading .heading__anchor, +.heading:hover > .heading__anchor { + display: none; +}