List view Inline styling

0
Hi Experts, I would like to custom style a list view. How can I use inline styling to remove the lines (between items) and padding?   Cheers, Ravi.
asked
3 answers
3

Adding the class ‘listview-stylingless’ to your listview will remove the default mendix styling.

Btw, I would recommend to use a class for your custom styling rather then inline styling. 

answered
1

In addition to what Jean said, you can see some of the standard css classes you can use within Mendix (see under listview):

https://docs.mendix.com/howto/front-end/styles

answered
1

To your question on how to add custom styling:

You can create your own scss files with your own classes. These files can be importet to the custom.scss file in the sass section of your styling folder. After adding it, you need to compile the scss files to css using gulp, koala,…

Do not directly edit the css files. They will be overwritten when the scss files are compiled.

answered