Ciao ho un problema sono riuscito sono a dividere gli articoli nel blog in blocchi da 4 e non uno sotto l’altro, ma ora li vorrei formattare distanziandoli uno dall’altro e mettendo il testo dell’articolo più piccolo questo è il mio codice
{% paginate blog.articles by %}
#
{% if current_tags %}
{{ current_tags.first }}
{% else %}
{{ blog.title }}
{% endif %}
{% include 'icon-rss' %}
RSS
{% for article in blog.articles %}
{% if article.tags.size > 0 %}
{% for tag in article.tags %}
**{{ tag }}**{% if forloop.last %} - {% else %}, {% endif %}
{% endfor %}
{% endif %}
{{ article.published_at | time_tag: format: 'date' }}
## {{ article.title }}
{% if article.image %}
{% assign img_url = article.image | img_url: '1x1' | replace: '_1x1.', '_{width}x.' %}
{% endif %}
{% if article.excerpt.size > 0 %}
{{ article.excerpt }}
{% else %}
{{ article.content | strip_html | truncatewords: 100 }}
{% endif %}
**{{ 'blogs.article.read_more' | t }}**
{% endfor %}
{% if blog.all_tags.size > 0 %}
###### {{ 'blogs.article.tags' | t }}
- {{ 'blogs.article.all_tags' | t }}
{% for tag in blog.all_tags %}
{% if current_tags contains tag %}
- {{ tag }}
{% else %}
- {{ tag | link_to_tag: tag }}
{% endif %}
{% endfor %}
{% endif %}
{% section 'featured-products-subsection' %}
{% if paginate.pages > 1 %}
{{ paginate | default_pagination | replace: '« Previous', '←' | replace: 'Next »', '→' }}
{% endif %}
{% endpaginate %}
Spero che abbiamo capito il mio problema
Rimango in attesa di un vostro riscontro
Saluti
Daniele
