From edfd7697af372055fa02d60aa485412e2ed04d84 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 20 Nov 2025 18:12:13 -0500 Subject: [PATCH] Make sidebar overlay content instead of pushing it right MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove article margin-left adjustment - let sidebar truly float over the content rather than displacing it. The main content now starts at its natural left margin, with the sidebar overlaying the left side. Creates a true floating sidebar that doesn't affect content layout. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/templates/base.html | 7 ------- 1 file changed, 7 deletions(-) diff --git a/kjvstudy_org/templates/base.html b/kjvstudy_org/templates/base.html index 36f3655..875cf90 100644 --- a/kjvstudy_org/templates/base.html +++ b/kjvstudy_org/templates/base.html @@ -219,13 +219,6 @@ display: none; } } - - /* Adjust article position when sidebar is present */ - @media (min-width: 1201px) { - article { - margin-left: 280px; - } - }