How to Reduce Font Size on Mobile in Hugo PaperMod

Hugo’s PaperMod theme uses text that is too large on smartphones by default, so I adjust it with custom CSS. Reference: Bundling Custom css with theme’s assets | FAQs · adityatelange/hugo-PaperMod Wiki Environment Windows 11 / Git Bash Hugo v0.164.0 (this method also works with the standard build) PaperMod v8.0 (pulled in through the latest commit at the time) $ hugo version hugo v0.164.0-ce2470e7012b5ab5fc4e10ebe4027e9f8d9e00dc+extended windows/amd64 BuildDate=2026-07-06T16:39:30Z VendorInfo=gohugoio $ cd themes/PaperMod && git log -1 --oneline 154d006 (HEAD -> master, origin/master, origin/HEAD) style(post-single): adjust padding for details summary element Setup Steps 1. Create the custom CSS Create assets/css/extended/custom.css. ...

2026-07-13