A user needed to expand the text width of a page title and description to match the full-width collection list on a specific page (featured-artist-collections) while keeping other pages at their current narrower width.
Theme Details:
Theme: Craft version 12.0
Page template name: featured-all-artist
Solutions Offered:
Two community members provided CSS-based solutions:
Moeed’s approach: Add custom code to theme.liquid file using Liquid conditional logic to target the specific page handle
Made4uo-Ribe’s approach: Add CSS to the theme’s stylesheet (base.css/style.css/theme.css) targeting the page width class with media queries
Resolution:
Initially, neither solution worked. Made4uo-Ribe then suggested adding !important flags to the CSS properties to override existing styles. This final adjustment successfully resolved the issue, achieving the desired full-width layout for the page title and description.
Summarized with AI on November 13.
AI used: claude-sonnet-4-5-20250929.
I’m looking to make the page title and description use the full page width on one specific page of my site (https://guthriestore.com/pages/featured-artist-collections). The page features a large number of selected collections with a short description at the top. The title and description are currently narrower than the list of collections (which are at 100% width).
The other pages on the site (About us and Contact/Hours/FAQs) are also at the narrower width, but I’d like to keep those as they are.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
Thank you Moeed and Made4uo-Ribe for the clear instructions. I tried both options and neither one changed the text on that page. The result image that Made4uo-Ribe shows is exactly how I want it to look. I’m not sure what else to try.