I would like to increase the spacing between paragraphs in units only so I added this custom CSS:
p {
margin-top: 0em;
margin-bottom: 2em;
}
however this affects the whole site. How do I apply this custom CSS to the units only? Thank you!
Please try adding this css :
.unit_wrap > p {
margin-top: 0em;
margin-bottom: 2em;
}
Thank you, just to correct your code in case someone needs this, you had an extra character ">" in the code that should not be there, the correct code to use for this is:
.unit_wrap p {
margin-top: 0em;
margin-bottom: 2em;
}