I want to make collections on the home page appear as 2 column, is it possible?
For the context, my collections is now in a row, since I only have 2 collections, I want to make them appear as 2 column.
Any help would be appreciate
I want to make collections on the home page appear as 2 column, is it possible?
For the context, my collections is now in a row, since I only have 2 collections, I want to make them appear as 2 column.
Any help would be appreciate
Could you share your store URL?
It is possible to display collections in two columns on the home page; however, it is based on which theme you’re using as well.
Here’s one example solution:
.collection-list {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
Alternatively, you can use our Weaverse Section Builder app to create and manage custom homepage sections easily. With Weaverse, you can add collections and specify their layout with a drag-and-drop interface, making it easy to create a two-column layout for your collections on the homepage.
Hi,
Please share your store URL and if your store is password protected then also provide password too.
Thank you.
Hello @pocca ,
You can try to do this:
{% for collection in collections %}
...
{% endfor %}
Hope this can help.
Ali Reviews team.