Hi there,
I’ve like to add a second button on my ‘image with text’ section on my home page - either below or alongside the current button. See screenshot. My theme is ‘narrative’, and would appreciate any advice on what code tweaks or additions can be made to achieve this.
Thank you!
Jules
Hi @JulesKennedy ,
I hope this message finds you well.
To add a second button to your Image with Text section, you can simply copy and paste the existing button code and modify it accordingly. If you’re looking for a structured approach, you can follow these steps:
schema code:
{
“type”: “url”,
“id”: “button_link_2”,
“label”: “Second Button Link”
}
Image with text file:
section code:
{% if section.settings.button_label_2 != blank %}
{{ section.settings.button_label_2 }}
{% endif %}
This will give the buttons a clean and aligned look.
After implementing these changes, you should be able to configure the second button through your theme settings. Hope this helps!
Let me know if you need further assistance, and the community will be happy to help. 
Regards,
Thanks so much for the assistance! I’ve added in the code in, but I think I may have made an error somewhere. “Second button link” now appears as an option in the section, but there isn’t anywhere to input a secondary button label, and it’s still only showing a single button. Any help to fix would be much appreciated!