I seem to recall that being a popular topic on occasion. Take a look at these conversations and see if there are any solutions that might fit your particular needs.
site:wordpress.org white space header twenty eleven
I am talking about the space between the header and the post. Not the space above the header. On the web page there is almost 1.5 inches of random space between the Header and Post.
Several threads in that list answer that very question – here’s one:
http://wordpress.org/support/topic/twenty-eleven-white-space?replies=11
Or you could use a browser tool like Firebug to help you identify the code in your site.
thanks. Changing the padding to 0 in this code reduced the space somewhat.
#main {
clear: both;
padding: 1.625em 0 0;
}
The other codes aren’t working though. I’d like to reduce the space significantly more. What can I do?
Just noticed the comment about firebug or whatever. I will try that I guess, but my programming skills are honestly pretty much limited to just googling HTML codes. Hopefully I will be able to use this, and will try it.
It doesn’t look like you’re concerned with navigation or titles, so you might try this:
.entry-content, .entry-summary {
padding: .1em 0px 0px;
}
.entry-title {
color: #DDDDDD;
display:none;
}
That seems to even things out just enough to center the pop-ups for your social media icons.
@claytonjames
Thank you. It looks beautiful now. Thanks! 100%
You’re welcome! Glad it worked.