Hello George,
I personally use a generic SASS/CSS snippet in all projects (part of the custom CSS/SASS files - this is what I'd suggest instead of altering your lib files) where I need to remove the border.
The code is:
.no-borders > .mx-list > li{
border-style: none;
}
From there on you just need to add the no-borders class to your list.
Hope this helps
You can also use default helper classes from Atlas UI to remove the styling alltogether
See https://atlas.mendix.com/index3.html#/helpers/7881299347899271 for more helper classes
Hi Dragos, Thanks a lot, that seemed to do the trick.
Apparently I needed to add the "> .mx-list > li" part behind my class name in the custom.css file (the rest I already tried, but without suc6).
I guess I need to do a quick read on css styles and the > mark ! :-)
GRTZ George