 
	
		
		
		
		
			
I want to reduce the vertical spacing between the items in the sidebar navigation menu. For an example of where I’m trying to do this: https://wisdomtrove.com/approval-seeking-quotes/
The code I tried…
.widget_nav_menu .menu-item {
 padding-top: 0px !important;
 padding-bottom: 0px !important;
}
However, this doesn’t work.
Thanks for your help with this.
Hey graememyburgh,
Add this to quick css:
.sidebar li:not(:last-child) {
    margin-bottom: 1px !important;
}Best regards,
Jordan Shannon
