Rows and Columns

I have two columns of text where I would like some text in both columns to appear as if they were on the same row. For example, the screenshot shows an arrow pointing two set of data that I would like to appear on the same row. When I put them in a row element, they don’t line up correctly on a small screen. How can I accomplish this?

Hello @eutaw,

Thanks for writing in!

If you cannot control the amount of texts, you can set a uniform minimum height to all of the text elements instead so that all of the text elements will have the same height and will lineup. In each of the text element settings, find the “Customize” tab and insert this element css:

$el {
	min-height: 160px;
}

We would love to know if this has worked for you. Thank you.

Thank you. I customized the text element. It worked well.

You’re most welcome.

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