Hi team, apologies for the super simple question. I am a newbie to coding.
How do I add space between my menu and the article title?
This is the code:
{{ article.title }}
{% if section.settings.blog_show_author %}
{{ ‘blogs.article.by_author’ | t: author: article.author }}
{% endif %}
{% if section.settings.blog_show_date %}
{{ article.published_at | time_tag: format: ‘date’ }}
{% endif %}
{{ article.content }}
{% if section.settings.show_share_buttons %}
{% include ‘social-sharing’, share_title: article.title, share_permalink: article.url, share_image: article.image %}
{% endif %}