Hello There,
Thanks for writing in! You cannot see the spaces because you have remove the bottom margin of the paragraph. I would recommend that you find this block of code from your child theme’s style.css file
.page-id-5648 .x-text p {
margin-bottom: 0;
}
You must replace it using this code instead:
.page-id-5648 .x-text p {
margin-bottom: 1.313em;
}
.page-id-5648 .x-text p:last-child {
margin-bottom: 0;
}
Hope this helps.