Archived topic
change spacing in sidebar
5 replies · Started by Edward on August 19, 2018
I have a 'recent posts' tab in my sidebar The titles look really far apart. Is there anyway of reducing the spacing in between them?
Hi there,
Any chance you can link us to the site in question?
You can edit the original topic and use the private URL field.
Let me know :)
Ok, added the URL privately
Hi there,
your links are wrapped in <p> tags so they inherit the margin-bottom from that, you can add this CSS to remove/reduce that:
#right-sidebar .textwidget p {
margin-bottom: 0.5em;
}
Awesome, Thank you!
You're welcome :)