Removing padding in column - Cornerstone

Hello,

I was having some difficulties removing whitespace in Cornerstone, and I wasn’t sure how to proceed. The page I was having issues with is this one:

https://www.nelc-law.org/academy-call-for-applications/

Section 2 in cornerstone on this page has 3 rows. The first row has 1 column, the second row has two columns, and the third row has 1 column.

In the first row, there is a lot of whitespace in the column I wasn’t sure how to remove. In the second row (2nd column), I was having the same issue. Any help would be appreciated! Thank you

Hi Micheal,

It looks like the problem is because of the h5 inside your content element. There’s a large top margin in the h5 tag. To fix that please add this custom css.

.x-bar-content-area h5 {
    margin-top: 0;
}

I would also recommend you to use the headline element if you want to add a heading, that way the styling of the heading will easily be customized without using custom css.

Hope it helps.

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