Padding for a row split into 2 columns

Hi there,

I don’t understand how to increase the padding on the whole section but keep the image (left side) and white background (right side) flush with the whole section.

Here is what I get when I change the ROW padding:

I don’t want the section background revealed, I want to increase the height and width of the whole row to be flush with the section.

Thank you!

Hello @artthescience,

Thanks for writing in!

Please be aware that the height of the section depends on the height of the row. The height of the row depends on the height of the columns. And lastly the height of the columns depends on whatever height of its contents. If there are no contents, you must set a minimum height for the columns. Simply click the column and in the column settings, find the “Customize” tab where you can insert an element css and add this:

$el {
  min-height: 500px;
}

Hope this helps. Kindly let us know.

It’s perfect. Thank you very much!

Hi there,

In case you want to read more about the Element CSS feature, you can check this article;

Hope this helps.

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