Hi,
I would like to increase the space shown when I hit on ‘enter’. Currently, it looks a little squeezy and I do not want to keep hitting ‘shift’ and ‘enter’ to manually adjust. Please refer to attachment to see the current space.
Yvonne
Hi,
I would like to increase the space shown when I hit on ‘enter’. Currently, it looks a little squeezy and I do not want to keep hitting ‘shift’ and ‘enter’ to manually adjust. Please refer to attachment to see the current space.
Yvonne
Hi Yvonne,
I hope you are well today and thank you for your question.
In WordPress the Enter space is created by p tag so you can increase the space of it by adding the following CSS code in the Custom CSS option of your theme on the below path.
Admin Area -> Appearance -> Customize -> Dazzling Options -> Other -> Custom CSS
body p {
margin: 0 0 20px;
}
Best Regards,
Movin
Hi Movin,
I used the code that you gave me and changed 20px to 50px but the space for enter still looks the same. Please refer to this post:
Notice the spacing for the ‘enter’ before each H3 is the same as each ‘enter’ in the paragraphs. How can I make it bigger?
Yvonne
It seems it is conflicting with other CSS on your shared site.
Please try using the below CSS code.
#main div.entry-content p {
margin: 0 0 50px;
}