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
11 أبريل 2022، 11:34م
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 إعجابات
Awesome @Don !!! Thank you!!!
إعجاب واحد (1)
system
(system)
تم إغلاقه في
11 مايو 2022، 11:41م
4
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.