Issue: The blog listing/show pages display the first post’s title as a header across all posts. The goal is to hide that heading.
Proposed fixes:
Theme.liquid approach: Add code near the end of theme.liquid before the tag to hide the heading (exact snippet not visible in the shared content). A screenshot shows the header removed.
CSS (desktop): In theme.css around line 1115, change the desktop rule “@media only screen and (min-width: 750px) { .section-header { margin-bottom: 55px; } }” to include “display: none !important;” so it becomes “.section-header { margin-bottom: 55px; display: none !important; }”. Screenshot confirms the result.
Mobile follow-up:
CSS (mobile): In theme.css around line 1112, modify “.section-header { margin-bottom: 35px; }” to “.section-header { margin-bottom: 35px; display: none !important; }”. Screenshot shows the header hidden on mobile.
Outcome/status:
Desktop solution acknowledged by the OP as working; mobile was initially unresolved, with a targeted CSS fix provided. Awaiting final confirmation from the OP. Screenshots and code snippets are central to the solution.
Summarized with AI on December 23.
AI used: gpt-5.