Skip to Content (Press Enter)
OutSystems.com
Personal Edition
Community
Support
Training
Training
Online Training
Developer Schools
Boot Camps
Certifications
Tech Talks
Documentation
Documentation
Overview
ODC
O11
Forums
Forge
Get Involved
Get Involved
Jobs
Ideas
Members
Mentorship
User Groups
Platform
Platform
ODC
O11
Search in OutSystems
Log in
Get Started
Back to Forums
Cathy Wei
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
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; }
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
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 Guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
See the full guidelines
Loading...