How can I remove the white space under FAQs? I am assuming this is the content section.
Topic summary
A user seeks to remove unwanted white space appearing below the FAQ page title on their Shopify store (servicetribute.com/pages/faq).
Proposed Solutions:
Three support teams offered CSS-based fixes:
-
saurav9005: Add code to
custom.csstargeting.shopify-section.faq-template-sectionwithpadding-bottom: 0 !important -
PageFly-Victor: Insert code in
custom.csstargetingdiv#shopify-section-page-faq-template__mainand.faq-accordion .accordion-icon--caretsto remove top/bottom padding -
GemPages: Paste code before
</head>in the theme’s liquid file
Resolution:
The user confirmed one solution worked perfectly, thanking the responder for clear directions. The issue appears resolved through custom CSS modifications to eliminate padding in the FAQ page template.
Or maybe hide the page title and content all together?
May I could just comment the title out? How do I find it?
add below code to the online store > edit code > custom.css
.faq-page .container .shopify-section.faq-template-section {
padding-bottom: 0 !important;
}
Hi @wtwaggoner ,
This is Victor from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/custom.css->paste below code at the bottom of the file:
div#shopify-section-page-faq__main {
padding-bottom: 0px
}
dl.faq-accordion.accordion-icon--carets {
padding-top: 0px !important;
}
Hope my answer will help you.
Best regards,
Victor | PageFly
Hello @wtwaggoner ,
It’s the GemPages Support Team and we are glad to assist you today!
I would like to give you the recommendation to support you so kindly follow the steps below:
- Go to Online Store > Theme > Edit code of your current theme
-
Open your theme.liquid theme file
-
Paste the below code before
Let us know how it works for you.
Best regards,
GemPages Support Team
Perfect! Your directions were fabulous! Have a wonderful rest of your week!
I am so glad that my suggestion can help
.


