Enumeration/Image Alignment in Datagrid

0
I have a datagrid with a column that displays an enumeration in image format. The images are centered in the cell, I would like to left align those images. Anyone have any ideas how to do this? (the images are ratings, i.e. 1 star, 2 stars, etc. so it would be easier for people to see the relative ratings if the images were left aligned.)
asked
1 answers
3

I believe you can achieve that with something like this in your theme:

.mendixDataGrid_tableHeadEnumIcon { text-align: left; }

answered