243
Views
3
Comments
how to horizontally align table rows
Question
I have an icon table( 1 column), I want to show all the icon horizontally. Anyone knows how to do it?
Thanks,
-Cathy
2016-04-21 20-09-55
J.
 
MVP
Use listrecords with bullets (aka unordered list).
then you get a vertical list at first, but you alter that easily with css..
you end up with a css something like:
#navcontainer ul {margin: 0;padding: 0;list-style-type: none;text-align: center;}
#navcontainer ul li { display: inline; }

UserImage.jpg
Cathy Wei
How to list record with bullets? Is bullet a widget? or it is an option of a table?
Sorry, I am new to outsystem :)
Thanks
2016-04-21 20-09-55
J.
 
MVP
It's the ListRecords actgion from the toolbox.
Then a property how to diviide, by default it's newline, but you should set it to Bullets.
Then you are off.

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.