Is there a way to display Categories and Authors in two columns rather than just one using the Nickel theme?
I am requesting a 2-column display for the Categories page and the Authors pageIf you are not referring to the 'all categories', and 'all authors' page from my screenshot, can you provide me the exact link of the pages you are trying to modify?
#eb .eb-categories, .eb-authors {
display: flex;
flex-wrap: wrap;
}
#eb .eb-category, .eb-author {
overflow: hidden;
margin-bottom: 20px;
flex: 1 0 50%;
padding: 10px;
}
@media screen and (min-width: 600px) {
#eb .eb-categories, .eb-authors {
display: flex;
flex-wrap: wrap;
}
#eb .eb-category, .eb-author {
overflow: hidden;
margin-bottom: 20px;
flex: 1 0 50%;
padding: 10px;
}
}