How can I reduce the space between the widgets in the sidebar?
The blog I need help with is relocatetodenver.wordpress.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
How can I reduce the space between the widgets in the sidebar?
The blog I need help with is relocatetodenver.wordpress.com.
You can change this by working on this property in your CSS stylesheet "#sidebar-primary .widget", so go to your stylesheet and add
#sidebar-primary .widget {margin: 0 20px 10px 10px;}
and adjust until you're happy. The numbers go in this order: top, right, bottom, left - just like a clock face. In the above, the top margin is 0, the right margin has 20px, the bottom margin has 10px, and the left margin has 10px.
Thank you, that worked very well.
This topic has been closed to new replies.