Hello,
You need to try this in your Custom CSS for achieving that:
.entry-content > p {
margin-bottom: 5px !important;
}
Here you can adjust the 5px as per your requirement.
Hope that helps. Thank you.
Thank you Jitendra.
Can you kindly advise what is the CSS code to standarized the text to black? According to my theme the default is grey.
Thank you!
– Lena
Hello,
Have you fixed that? I can see the texts in black. Only the sidebar has grey text. To make it black, you need to try this in your Custom CSS:
.excerpt {
color: #000;
}
Also I have noticed that you have added the color into every paragraph in the home page to make it black. Rather you can just add a single code in your custom CSS for that.
Previously you have added this in your Custom CSS:
.entry-content > p {
margin-bottom: 5px !important;
}
Try replacing this with this:
.entry-content > p {
color: #000 !important;
margin-bottom: 5px !important;
}
Hope that helps. Thank you.