Removing padding on blog
-
Hi on my blog : http://blog.lucbauer.com/category/blog/
I want to remove some padding, I have been half successful, using the code below removes the padding above the word ‘BLOG’, but how would you remove the padding below the word ‘BLOG’
#main {
padding-top: 20px;
}The blog I need help with is: (visible only to logged in users)
-
Hi there, Whew! This was a little complicated. “Blog” on this page, http://blog.lucbauer.com/category/blog/ , has some bottom margin set, but the articles (posts) also have some top margin set, and you can’t adjust the spacing without adjusting both. Add the following CSS and see what you think. You can adjust as desired.
.hentry + .hentry, .page-header + .hentry { margin-top: 20px; } .page-header { margin-bottom: 0; } -
-
- The topic ‘Removing padding on blog’ is closed to new replies.