Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have some extra white space in my layout on my blog which is hosted by blogger. What do I need to do to remove that extra white space? Here is a screen shot of what is happening: https://img.skitch.com/20110211-tbg5tyj5bywyk9isqk29etq66a.jpg

My blog is http://www.gettingmoreawesome.com and you can see it live on there.

Thanks in advance! Rishi

share|improve this question
+1 .may face same problem – Sangram Mar 13 '11 at 5:11

1 Answer

up vote 2 down vote accepted

Possibly try adding overflow:hidden on your .main-inner div:

.main-inner {
padding-top: 30px;
padding-bottom: 30px;
overflow: hidden;
}
share|improve this answer
Hi Luke! That worked like a charm. Thank you so much! – Rishi Feb 14 '11 at 18:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.