Hi! Is there a way to get 3 blog columns instead of one in the brooklyn theme?
Sorry you are facing this issue, it would be my pleasure to help you.
Welcome to the Shopify community! ![]()
Thanks for your good question.
Please share your site URL,
I will check out the issue and provide you a solution here.
sorry but i can see only 1 blog can you please show me more!
I added 3 posts so you can see… https://mybestfriendchies.com/blogs/frenchbullblog
hi @Gabriellesimard can you provide liquid code for blog section!
this is the blog.liquid code
{% paginate blog.articles by 15 %}
{% if current_tags %} {{ blog.title | link_to: blog.url }} — {{ current_tags.first }} {% else %} {{ blog.title }} {% endif %} RSS
{% for article in blog.articles %}
{% assign article_content = article.excerpt_or_content %}
{% unless article.image == blank %}
{% endunless %}{{ article.title }}
{{ 'blogs.article.read_more' | t }}
{% if article.tags.size > 0 %}
-
{% include 'tags-article' %}
{% unless forloop.last %}
{% endunless %}
{% endfor %}
{% if paginate.pages > 1 %}
{% include ‘pagination’ %}
{% endif %}
{% endpaginate %}
Could it be possible to have a little space between the photos?
Yes its that possible can you please just confirm look?
The look is great!
thanks for confirm please add this code
- Go to Online Store->Theme->Edit code
- Asset->/theme.scss.liquid->paste below code at the bottom of the file.
@media only screen and (min-width: 769px) {
.template-blog main.main-content .grid__item.large--five-sixths.push--large--one-twelfth {
width: 100%;
left: 0;
}
.template-blog main.main-content article.article.grid.small--text-center {
width: calc(33.3333% - 15px);
float: left;
margin: 0px 7px;
}
.template-blog main.main-content hr {
display: none;
}
.template-blog main.main-content article.article.grid.small--text-center .grid__item {
padding-left: 0;
width: 100%;
}
.article__featured-image-wrapper {
padding-top: 100% !important;
}
.article__featured-image {
width: 100%;
height: 100%;
object-fit: cover;
}
}
After Code result
Its perfect! thank you so much!

