Hello!!
I know how to handle basic features via CSS when I can inspect the page and find out what’s what. But in the case of the mobile version I’m unsure how to proceed.
I want to close the gap between categories
To make it look continuous, like it looks on desktop:
Do anyone knows how to control that? Any hint would be much appreciated!
Don
April 11, 2022, 11:34pm
2
Hello @lisandro_iaffar ,
Add this custom css to the mobile section.
This should work.
I add back the margins to the first and last categories.
.category-list-item {
margin: 0;
&:first-child {
margin-top: 1em;
}
&:last-child {
margin-bottom: 2em;
}
}
4 Likes
Awesome @Don !!! Thank you!!!
1 Like
system
(system)
Closed
May 11, 2022, 11:41pm
4
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.