Hello, how can i have 4 collections in collection list ( mobile view). currently it can only show 2 collections on the same row on mobile or multiple collections via swipe on mobile. i am using the Dawn theme.
currently
i would like to have it as below
Thank you
Hi @Ronaldh
follow this:
- Go to Online Store->Theme->Edit code
- Asset->base.css → paste bellow code in bottom of file
@media only screen and (max-width: 767px) {
.collection-list__item.grid__item { width: 20% !important; }
.full-unstyled-link{ font-size: 11px !important;}
}
1 Like
Hi @Ronaldh ,
You can try follow the instruction below:
- Go to Online Store → Theme → Edit code.
- Assets-> /base.css. Paste code below into end the file.
@media screen and (max-width: 749px){
.grid--2-col-tablet-down .grid__item {
width: 20% !important;
padding: 0 10px;
margin: 0;
}
.full-unstyled-link {
font-size: 12px;
}
.card--standard>.card__content .card__information {
padding-top: 0;
}
.card .icon-wrap {
display: none;
}
}
1 Like
hello. I cannot find Asset->base.css
base.css have another name?