I have recently started using the dawn theme I am wondering how I can change the amount of collections in a row from 3 to 5
Topic summary
Cambiar el número de colecciones por fila en el tema Dawn de Shopify (de 3 a 5).
- Problema: se busca mostrar 5 colecciones en una fila en lugar de 3.
- Solicitud de datos: se pide compartir la URL del sitio para revisar el caso y proponer una solución.
- Solución propuesta: editar el archivo de estilos del tema en Assets > section-collection-list.css y añadir al final una regla CSS para pantallas de al menos 750px:
- Ajusta el max-width de cada elemento de la grilla a 20% para que entren 5 columnas.
Estado: hay una respuesta con un snippet de CSS (incluye captura) como posible solución, pero no se confirma si el cambio funcionó en el sitio porque no hay seguimiento posterior.
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.
Hi @Jonathan03 ,
Go to Assets > section-collection-list.css and paste this at the bottom of the file:
@media screen and (min-width: 750px) {
.collection-list.grid--3-col-tablet .grid__item {
max-width: 20%;
}
}
Hope it helps!
