By TOCHTERMANN on Saturday, 05 May 2018
Posted in Presale Questions
Replies 1
Likes 0
Views 6.7K
Votes 0
Hello,

Is it possible with EasyLayout to "override" the List of Categories to make it in 3 columns for example ?

Thanks !
This has been on the ToDo list for a while - I've not figured out a good way to make the layout editing page easy to use.

In the meantime you can add this CSS to your template's custom CSS file



.categories-list > div {
width: 32%;
float: left;
margin-right: 1%;
}
.categories-list > div:nth-child(3) {
margin-right: 0%;
}

@media (max-width: 768px) {
.categories-list > div {
width: 49%;
float: left;
margin-right: 1%;
}
.categories-list > div:nth-child(2) {
margin-right: 0%;
}

}


This will put your categories in 3 columns with a small space between them. And on narrow devices it will revert to 2 columns
·
5 years ago
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post