Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #863778

    bak
    Participant

    Hi there

    Probably something really simple but could not find the answer

    I have regular text in several paragraphs. In the text editor I hit the return key twice to create a line space in between but in the front end the line space does not appear. what do I need to do?

    thanks

    #863779

    bak
    Participant
    This reply has been marked as private.
    #864302

    Rue Nel
    Moderator

    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.