Home Forums Lorina Get rid of whitespace between post title and content Reply To: Get rid of whitespace between post title and content

#11774
Andy
Keymaster

Yes, it is because some posts have more content than others, and as the box of each post in the same row is the same height, the spacing is like this so that the content starts at the top of the box, and the last piece of content ends at the bottom of the box.

You can change this to make all the empty space be displayed at the end of the last piece of content.
Add this code to ‘Customize’ > ‘Additional CSS’:

#grid-loop article,
#main.infinite-grid .infinite-wrap article {
    justify-content: normal;
}

Or if you prefer the empty space at the beginning, use this code instead:

#grid-loop article,
#main.infinite-grid .infinite-wrap article {
    justify-content: end;
}