Reduce Spacing Between Blocks Apostrophe 2 Theme
-
How do I reduce the space between blocks in Apostrophe 2 theme?
The blog I need help with is: (visible only to logged in users)
-
Hi, you can try to change the margins and paddings by using “additional css”.
For the bullet-list just copy the css-code below:
ul, ol {
margin: 0 0 1em;
}
–> You can experiment with the 1em. Go down or up till you like the spacing.For the paragraph blocks just copy the css-code below:
p {
margin-bottom: 1.5em;
}Change it to 1 or 0.5em.
Just try a bit with that till you got the best result.
I hope this was helpful for you! Have a great day.
- The topic ‘Reduce Spacing Between Blocks Apostrophe 2 Theme’ is closed to new replies.