A user working with Shopify’s Debut theme wants to remove detailed product descriptions from the featured product section on their homepage, as it appears too wordy.
Two CSS solutions were provided:
Via theme.scss.liquid file:
Navigate to Online Store > Themes > Edit code > Assets
Open theme.scss.liquid
Add CSS code targeting .featured-product .product-single__description with display: none !important;
Via base.css/style.css/theme.css:
Access the same theme editor path
Locate the appropriate CSS file in the Assets folder
Add similar CSS code at the bottom, specifically targeting the product description element
Save changes
Both solutions use CSS to hide the description element while keeping the featured product visible. The issue remains open with no confirmation of which solution worked.
Summarized with AI on November 15.
AI used: claude-sonnet-4-5-20250929.
I have my “featured product” on my homepage but it lists all the details and looks very wordy. Is there a way to remove all the details from the featured product on the home page in the debut theme?
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: