How can I eliminate the white space under my FAQ page title?

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.css targeting .shopify-section.faq-template-section with padding-bottom: 0 !important

  • PageFly-Victor: Insert code in custom.css targeting div#shopify-section-page-faq-template__main and .faq-accordion .accordion-icon--carets to 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.

Summarized with AI on November 21. AI used: claude-sonnet-4-5-20250929.

How can I remove the white space under FAQs? I am assuming this is the content section.

https://servicetribute.com/pages/faqs

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:

  1. Go to Online Store > Theme > Edit code of your current theme

  1. Open your theme.liquid theme file

  2. 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 :grin: .