From 7987f9db8155de2115dbdf79f675eee2fa1911d5 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 28 Nov 2025 10:13:46 -0500 Subject: [PATCH] Increase font size of topic subtitle in PDF MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The topic description/subtitle now displays at 14pt instead of inheriting the body's 11pt, making it more prominent and easier to read. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/templates/topic_pdf.html | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/kjvstudy_org/templates/topic_pdf.html b/kjvstudy_org/templates/topic_pdf.html index 9276385..b43ea55 100644 --- a/kjvstudy_org/templates/topic_pdf.html +++ b/kjvstudy_org/templates/topic_pdf.html @@ -39,6 +39,13 @@ margin-bottom: 0.1in; } + .subtitle { + font-size: 14pt; + font-style: italic; + color: #666; + margin-bottom: 0.3in; + } + .overview { margin-bottom: 0.3in; } @@ -76,7 +83,7 @@

{{ topic_name }}

-

{{ topic.description }}

+

{{ topic.description }}

{% if topic.overview %}
{{ topic.overview | safe }}