Does anyone know how to add my text underneath as a subheading under functional benefits?
Topic summary
A user seeks help adding subheading text beneath “Functional Benefits” in their Shopify store section, sharing a screenshot of the desired location.
Key Details:
- Store uses the “Be Yours” theme (probrew.co.uk)
- The feature section originates from the Section Store App, not the base theme
- Section file is approximately 1,400 lines of code
Solutions Offered:
Simple approach (recommended): Use the section’s built-in “Heading” rich text editor to format text with different styles, then apply custom CSS if needed to adjust font size.
Code-based approach: Multiple users offer to modify the .liquid file by adding schema fields for rich text and corresponding template code to display subheadings.
Current Status:
- One helper requested collaborator access to directly implement the solution
- The original poster agreed and was instructed to send collaborator code via private message
- Discussion remains open pending implementation
Yes, you can add a subheading under the functional benefits. Could you please let me know which theme you’re using so I can provide the most suitable solution? If possible, please also share your store URL.
Hi @ProBrew
So your store is probrew.co.uk, and your theme is Be Yours, but I could not see that Feature section in demo of the theme.
But in general if you comfortable editing code, you can add something like this, in that section .liquid code:
First, below title in Schema:
{
"type": "richtext",
"id": "text",
"label": "Section text",
"default": "<p>Add your content here. This section supports rich text formatting.</p>"
},
and then after title in code
{% assign text = section.settings.text %}
{% if text != blank %}
<div class="rich-text__text typeset2 rte">
{{ text }}
</div>
{% endif %}
Hi @ProBrew,
I checked and it is in the section outside the theme.
Please go to Actions > Edit code > Sections > ss_feature_9_4ihNtw.liquid file or ss_feature_9.liquid file. Please send me the code, I will check and guide you to add it
Please share liquid code of that section template
Because it’s a section from the Section store App.
Paste your text into the Sections “Heading” section and format is with tools provided in the rich text editor of this setting:
If the paragraph font is still too big, paste something like this into sctions “Custom CSS” setting:
p {
font-size: 16px;
}
Thanks @tim_1 I suspected it is some app, but did not know which one. Nice solution.
It’s 1400 Lines unfortunately
Hi @ProBrew,
Can I send you a collaborator invite? It will help me check the code and add an option
Yeah sure, that would be useful
Hi @ProBrew,
Please send me the collaborator code in private message, I will send you the invitation and check it



