How do I change line spacing on a page?

Hello,
I have imported text to a page and the spacing is suddenly double to anywhere else (the content is a list, but not bulleted since that changed the font…
This means there is sort of a paragraph break after each line, which I would like to remove). How do I change it into “normal” spacing?
Thanks in advance.

Hello there,

I hope you are doing well today.

Could you please provide a link to your website so that I can inspect it?

Best Regards,
Support

Ok,

https://beta.ensr-ape.ch/

Thanks.

Hello there,

You can use the following CSS code to adjust the spacing for the lists by going to Appearance > Customize > Additional CSS and pasting it there.

/*List spacing*/
.entry-content p {
    padding-bottom: 5px;
    margin-bottom: 5px;
    padding-top: 5px;
}

Best Regards,
Support