Table Layout Formatting

In table layout, how do I eliminate the excess space below the title, where the header would go (I don’t want a header) above the row?

Can you provide screenshots showing what you are talking about please?


Sure! Here you go:

Looks like the space is always allocated for headings whether or not you have them. What’s the end goal for the collection? Just trying to determine if a different collection style would work better.

Otherwise, you would probably have to apply some CSS to hide the header row. Give the collection a css name and try something like this:

.cssname tr:first-child {
  display: none;
}

Thank you, that worked :slight_smile:

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.