CSS Sidebar queries
- The topic ‘CSS Sidebar queries’ is closed to new replies.
Need help? Check out our Support site, then
Hello!
Thanks for your help with my previous query. I’m really happy with the layout of the blog, but had a couple of questions about editing CSS (which I am a complete newbie in I’m afraid):
– how can I decrease the font size of text in the sidebar (text widgets)
– how can I reduce the space between the individual widgets? They’re just a bit spaced-out for me, would like it to be a bit closer.
I had a look in the Inspect Element but I wasn’t sure what referred to what, and I didn’t want to try and guess myself. Any help in this would be greatly appreciated.
Thanks again!
The blog I need help with is: (visible only to logged in users)
For the widget spacing you could add:
aside .widget-wrap {
padding-bottom: 0;
}
aside .widget {
margin: 0 0 10px 0;
}
For the font size this should work:
aside .widget-wrap {
font-size: 0.9em;
}
That’s great thank you! I’m not sure the space between widgets has changed much if any but the font size was the main thing I was wondering about, and that worked a treat. Thanks again!
Oh one last thing, sorry – could you also help me out with reducing the font size in the individual posts please? I’d prefer that to be smaller too. Sorry, I’m such a novice at this CSS stuff. Thanks
The font size for the body content is changed in a similar way
article .entry {
font-size:0.9em;
}