Tuesday, January 18, 2011

How do I remove the space:

Above the body at top of page?

Best answer:
I believe you're looking for this (if I understood you correctly). Dashboard - Design - Template Designer - Advanced - Add CSS - paste the following code - Apply to blog.
.content{
margin-top: -30px;
}

Regards,
Yoboy,


Between Header and Body/Space between posts:

Design > Template Designer > Advanced (on left) > Add CSS (bottom of Advanced list).

In the Add custom CSS box, add these styles. They duplicate existing styles so there will be no change.
.main-inner {padding-top:30px}
.date-outer {margin: 30px 0 20px;}
As you make changes they should show in the preview.

First, change .main-inner from 30px to 0px. The header/content space should disappear. If it does what you want, you will need to leave this style, since you can't change the external stylesheet.

Then, in .date-outer, change:
 margin: 30px 0 20px;
to:
 margin: 15px 0 10px;

You can adjust until you see what you want.

You are not changing the blog at this point, so it's easy to make changes and see the affect.

When you are done click APPLY TO BLOG.

Related Posts Plugin for WordPress, Blogger...